Is there a way to query or just access newly added object (using ObjectContext.AddObject method) in Entity Framework? I mean situation when it is not yet saved to data store using SaveChanges
I understand that queries are translated to underlying SQL and executed against data store, and it don't have this new object yet. But anyway, I'm curious - if it is not oficially supported, maybe it is possible in theory. If it's not, how developer can deal with it? Manually track new objects and query them using Linq to objects?
The same question also applies to LinqToSql.
In EF, if you use this code, you have all the entities that are already loaded in the context (including newly added ones) :
context.ObjectStateManager.GetObjectStateEntries(EntityState.Added | EntityState.Modified | EntityState.Unchanged).Select(o => o.Entity).OfType<YourObjectType>()
"The same question also applies to LinqToSql."
For LINQ-to-SQL, look at DataContext.GetChangeSet()
; this has 3 separate collections for the pending .Inserts
, .Updates
and .Deletes
Note that the ChangeSet
is a snapshot of when the GetChangeSet()
method is called; you need to re-query to see any additional changes.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With