Question

I have attached entities to a context with EntityState.Unchanged which will be referenced by a new entity I add later via DbContext<T>.Add(). The Add() adds the entity, but it also adds the other entities it references to the added collection in ObjectStateManager, despite the referenced ones being in the unchanged collection previously. Under the debugger I see the referenced entities in both collections. So, I end up with inserts occurring on the referenced children entities when I don't want them to.

Était-ce utile?

La solution

The previously attached entities were identical structurally, but they were different references. EF seems to use ReferenceEquals under the covers.

Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top