ObjectStateManager.GetObjectStateEntries(EntityState) 方法

定义

返回具有给定状态的对象或关系的 ObjectStateEntry 对象的集合。

public:
 System::Collections::Generic::IEnumerable<System::Data::Objects::ObjectStateEntry ^> ^ GetObjectStateEntries(System::Data::EntityState state);
public System.Collections.Generic.IEnumerable<System.Data.Objects.ObjectStateEntry> GetObjectStateEntries (System.Data.EntityState state);
member this.GetObjectStateEntries : System.Data.EntityState -> seq<System.Data.Objects.ObjectStateEntry>
Public Function GetObjectStateEntries (state As EntityState) As IEnumerable(Of ObjectStateEntry)

参数

state
EntityState

用于筛选返回的 EntityState 对象的 ObjectStateEntry

返回

具有给定 ObjectStateEntryEntityState 对象的集合。

例外

stateDetached 时。

注解

EntityState 是一个位字段,因此,通过对多个 EntityState 值执行按位或操作,在一次调用中即可检索多个状态的状态项。

适用于