I am trying to update an entity with a FK relationship in EntityFramework 4.3 Code First. I try to attach to the related entites by calling: Entry(item).State = EntityState.Unchanged
I get the following exception: An object with the same key already exists in the ObjectStateManager. The ObjectStateManager cannot track multiple objects with the same key.
I do not update these items nor have an id property for them on my main entity. Is it possible to know which entities are attached or not ?
Thanks in advance, Radu
question from:https://stackoverflow.com/questions/10027493/entityframework-code-first-check-if-entity-is-attached