ObjectQuery<T>.Execute(MergeOption) 方法

定义

使用指定的合并选项执行对象查询。

public:
 System::Data::Objects::ObjectResult<T> ^ Execute(System::Data::Objects::MergeOption mergeOption);
public System.Data.Objects.ObjectResult<T> Execute (System.Data.Objects.MergeOption mergeOption);
override this.Execute : System.Data.Objects.MergeOption -> System.Data.Objects.ObjectResult<'T>
Public Function Execute (mergeOption As MergeOption) As ObjectResult(Of T)

参数

mergeOption
MergeOption

要在执行查询时使用的 MergeOption。 默认值为 AppendOnly

返回

一个 ObjectResult<T>,它包含查询返回的实体对象的集合。

示例

此示例从 Execute 方法返回 ObjectResult<T> 。 然后,获取一个枚举器并循环访问查询结果。 最后,释放枚举器和 ObjectResult<T> 对象。

using (AdventureWorksEntities context =
    new AdventureWorksEntities())
{
    ObjectSet<Product> query = context.Products;
    ObjectResult<Product> queryResults = null;

    System.Collections.IEnumerator enumerator = null;
    try
    {
        queryResults = query.Execute(MergeOption.AppendOnly);

        // Get the enumerator.
        enumerator = ((System.Collections.IEnumerable)queryResults).GetEnumerator();

        // Iterate through the query results.
        while (enumerator.MoveNext())
        {
            Product product = (Product)enumerator.Current;
            Console.WriteLine("{0}", product.Name);
        }
        // Dispose the enumerator
        ((IDisposable)enumerator).Dispose();
    }
    finally
    {
        // Dispose the query results and the enumerator.
        if (queryResults != null)
        {
            queryResults.Dispose();
        }
        if (enumerator != null)
        {
            ((IDisposable)enumerator).Dispose();
        }
    }
}

注解

对象查询的默认合并选项为 AppendOnly。 有关详细信息,请参阅标识解析、状态管理和更改跟踪

适用于

另请参阅