ObjectStateManager::GetObjectStateEntries Method (EntityState)

 

Returns a collection of ObjectStateEntry objects for objects or relationships with the given state.

Namespace:   System.Data.Objects
Assembly:  System.Data.Entity (in System.Data.Entity.dll)

public:
IEnumerable<ObjectStateEntry^>^ GetObjectStateEntries(
	EntityState state
)

Parameters

state
Type: System.Data::EntityState

An EntityState used to filter the returned ObjectStateEntry objects.

Return Value

Type: System.Collections.Generic::IEnumerable<ObjectStateEntry^>^

A collection of ObjectStateEntry objects in the given EntityState.

Exception Condition
ArgumentException

When state is Detached.

The EntityState is a bit field, so state entries for multiple states can be retrieved in one call by doing a bitwise OR of more than one EntityState values.

.NET Framework
Available since 3.5
Return to top
Show: