本文介绍了在 SaveChanges 之前的 AddObject 之后查询对象?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
在EntityFramework中,是否可以在调用SaveChanges方法之前使用AddObject查询刚刚添加到上下文中的对象?
In EntityFramework, is that possible to query the objects that have just been added to the context using AddObject but before calling the SaveChanges method?
谢谢
推荐答案
你可以这样查询对象,
context.ObjectStateManager.GetObjectStateEntries(EntityState.Added).Select(obj => obj.Entity).OfType<TheEntityType>()
这将查询处于添加状态的对象.如果你也想要其他状态,你可以像这样将所有其他状态传递给 GetObjectStateEntries
方法.
this will query the objects which are in added state. If you want other states too you can pass all other states to GetObjectStateEntries
method like this.
GetObjectStateEntries(EntityState.Added | EntityState.Modified | EntityState.Unchanged)
这篇关于在 SaveChanges 之前的 AddObject 之后查询对象?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!