up vote 1 down vote favorite
1
share [g+] share [fb]

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>();

link|improve this question

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 '09 at 15:45
feedback

3 Answers

up vote 1 down vote accepted

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

link|improve this answer
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 '09 at 10:32
feedback

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|improve this answer
Many thanks, i will read it first thing tomorrow morning at work. Sounds like it should help me out. – Kohan Nov 6 '09 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 '09 at 14:07
feedback

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

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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