Olá,
Estou tentando editar um registro existente no banco utilizando o código abaixo, porém é apresentado o seguinte erro:
An exception of type 'System.Data.Entity.Validation.DbEntityValidationException' occurred in EntityFramework.dll but was not handled in user code
Additional information: Validation failed for one or more entities. See 'EntityValidationErrors' property for more details.
O erro ocorre na linha 'contexto.SaveChanges();'.
public void Atualiza(Clientes cliente)
{
contexto.Clientes.Add(cliente);
contexto.Entry(cliente).State = System.Data.Entity.EntityState.Modified;
contexto.SaveChanges();
}
Alguém sabe o que pode estar gerando este erro?