vote up 1 vote down star
1

Bit of an odd question but is there a way of seeing what objects are attached to my object context. I am getting a few random problems and it would really be helpful to solve them if i could see what's been attached and not yet saved through "SaveChanges".

Answer (Entity Framework) : context.ObjectStateManager.GetObjectStateEntries(EntityState.Added | EntityState.Modified | EntityState.Unchanged).Select(o => o.Entity).OfType<YourObjectType>();

flag

A little bit of confusion here, I started my title with simply linq as i expected the answer could have come from EF or SQL. This did not turn out to be the case. However for the benefit of others answers this question for both these framworks can be found here so i have kept the title and tags for both. – Kohan Nov 6 at 15:45

3 Answers

vote up 1 vote down check

Maybe I'm misunderstanding (or oversimplifying) your question but it sounds like GetChangeSet() could help you?

link|flag
Thanks, your suggestion lead to a relativly simple solution. GetChangeSet only works with linq to sql and i am using Entities but i found this post: stackoverflow.com/questions/326186/… , and it really helped me out with "context.ObjectStateManager.GetObjectStateEntries(EntityState.Added | EntityState.Modified | EntityState.Unchanged).Select(o => o.Entity).OfType<YourObjectType>()" which can be used in EF. – Kohan Nov 6 at 10:32
vote up 0 vote down

You look at the object state entries in the ObjectStateManager. This article has an example.

link|flag
vote up 1 vote down

I think this article might be of interest.

It covers using reflection to look inside (private) fields in the DataContext for changed items. I believe it could be adapted to show all items, not just changed ones.

link|flag
Many thanks, i will read it first thing tomorrow morning at work. Sounds like it should help me out. – Kohan Nov 6 at 0:14
That's for LINQ to SQL only. It won't work for EF. (Though I see this question has been tagged LINQ to SQL in the past.) – Craig Stuntz Nov 6 at 14:07

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.