Entity Framework 4 Entity with EntityState of Unchanged firing update
- by Andy
I am using EF 4, mapping all CUD operations for my entities using sprocs.
I have two tables, ADDRESS and PERSON. A PERSON can have multiple ADDRESS associated with them.
Here is the code I am running:
Person person = (from p in context.People
where p.PersonUID == 1
select…