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)
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
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!