Views does not have a primary key then it generates the error:
Error: The number of primary key values passed must match number of primary key values defined on the entity.
How could you do to avoid this error?
public ActionResult AtualizaCliente(int id)
{
sistema_mobileEntities dao = new sistema_mobileEntities();
return View(dao.vcliente.Find(id));
}