var contactado = ContactadoRepositorio.ObterListaContactadoPorCodigo(procedimentoVM.CodContactadoPessoa); //obtenho o contactado pelo id obtido;
foreach (var c in contactado)
{
var contactadoPessoa = new ContactadoPessoa()
{
Codigo = c.Codigo,
CodigoPessoa = c.CodigoPessoa,
Nome = c.Nome,
CodigoProcedimento = procedimento.Codigo
};
ContactadoRepositorio.Atualizar(contactadoPessoa);
}
//Com o objeto obtido eu atualizo as propriedades que eu quero salvar no BD
public void Atualizar(ContactadoPessoa contactadoPessoa)
{
this.Context.ContactadoPessoas.Attach(contactadoPessoa);
this.Context.Entry(contactadoPessoa).State = EntityState.Modified;
this.Context.SaveChanges();
}
//Metodo para Atualizar e salvar no BD
When I run the code I get the following error:
Attaching an entity of type 'Strong.Tracker.Model.ContactedPerson' failed because another entity of the same type has already the same primary key value. This can happen when using the 'Attach' method or setting the state of an entity to 'Unchanged' or 'Modified' if any entities in the graph have conflicting key values. This may be because some entities are new and have not yet received database-generated key values. In this case use the 'Add' method or the 'Added' state entity to track the graph and then set the state of non-new entities to 'Unchanged' or 'Modified' as appropriate