ObjectQuery<T>::Execute Method (MergeOption)
.NET Framework (current version)
Executes the object query with the specified merge option.
Assembly: System.Data.Entity (in System.Data.Entity.dll)
Parameters
- mergeOption
-
Type:
System.Data.Objects::MergeOption
The MergeOption to use when executing the query. The default is AppendOnly.
Return Value
Type: System.Data.Objects::ObjectResult<T>^An ObjectResult<T> that contains a collection of entity objects returned by the query.
The default merge option for object queries is AppendOnly. For more information, see Identity Resolution, State Management, and Change Tracking.
This example is based on the AdventureWorks Sales Model. The example returns an ObjectResult<T> from Execute method. Then it gets an enumerator and iterates through the query results. At the end it releases the enumerator and the ObjectResult<T> object.
.NET Framework
Available since 3.5
Available since 3.5
Show: