ObjectQuery<T>.Execute(MergeOption) 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
使用指定的合併選項執行物件查詢。
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>,其中包含查詢所傳回之實體 (Entity) 物件的集合。
範例
這個範例會 ObjectResult<T> 從 方法傳 Execute 回 。 然後,它會取得列舉值並且逐一查看查詢結果。 最後,它會釋放列舉值和 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。 如需詳細資訊,請參閱身分識別解析、狀態管理和變更追蹤。