Is there a way to save changes for individual tracked objects rather than all the objects in the ObjectStateManager
, and I mean something like:
ObjectContext.SaveChanges(Contact)
Is there a way to save changes for individual tracked objects rather than all the objects in the ObjectStateManager
, and I mean something like:
ObjectContext.SaveChanges(Contact)
Maybe you could create two different contexts and save one set of objects at a time rather than the whole lot? Could you detach the object in question from your main context, attach it to another context and save that context? I know that it can get very messy working with multiple contexts however!