I have Entity1 with properties
Entity1.id= 1;
Entity1.a = 10;
Entity1.b = 123;
Entity1.c = 231;
I wan't to change properties but to insert a new row on context.SaveChanges() not to do update for existing id.
I tried to set Entity1.entityKey = null
but it fails.
Any ideas?
Thanks.