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>입니다.
예제
이 예제에서는 에서 Execute 메서드를 ObjectResult<T> 반환합니다. @FSHO2@그런 다음 열거자를 가져오고 쿼리 결과를 반복합니다. 마지막에는 열거자와 개체가 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입니다. 자세한 내용은 Id 확인, 상태 관리 및 변경 내용 추적합니다.
적용 대상
추가 정보
GitHub에서 Microsoft와 공동 작업
이 콘텐츠의 원본은 GitHub에서 찾을 수 있으며, 여기서 문제와 끌어오기 요청을 만들고 검토할 수도 있습니다. 자세한 내용은 참여자 가이드를 참조하세요.
.NET