4
In the case assuming an entity "Entidadea" that references an entity "Entidadeb", I want to save it, but referencing an entity B already existing ex:
EntidadeA a = new EntidadeA();
EntidadeB b = new EntidadeB();
b.Id = 5;// id de entidade existente no banco
a.EntidadeB = b;
context.EntidadesA.Add(a);
context.SaveChanges();
//porém neste caso o framework cria uma nova entidade para b,
//o real objetivo é referenciar uma entidade ja persistida com o id 5
and if you have several related entities B, C, D,... you have some way to search for gifts without attacking them one by one, for example by tapping A directly ?
– user5020
If you have several you will have to do a foreach(Entidadeb oEntidadeB in a.Entidadeb) { }
– PauloHDSousa