다음을 통해 공유


EntityCollection<TEntity>.Load(MergeOption) 메서드

정의

지정된 병합 옵션을 사용하여 관련 개체를 컬렉션에 로드합니다.

public:
 override void Load(System::Data::Objects::MergeOption mergeOption);
public override void Load (System.Data.Objects.MergeOption mergeOption);
override this.Load : System.Data.Objects.MergeOption -> unit
Public Overrides Sub Load (mergeOption As MergeOption)

매개 변수

mergeOption
MergeOption

이 컬렉션의 개체를 동일한 ObjectContext대해 이전 쿼리에서 반환되었을 수 있는 개체와 병합하는 방법을 지정합니다.

예제

이 예제는 Adventure Works Sales 모델을 기반으로 합니다. 이 예제에서 코드를 실행하려면 프로젝트에 AdventureWorks 판매 모델을 이미 추가하고 Entity Framework를 사용하도록 프로젝트를 구성해야 합니다. 이렇게 하려면 방법: Entity Framework 프로젝트 수동으로 구성하고 방법 : 수동으로 모델 및 매핑 파일정의의 절차를 완료합니다.

다음은 Contact 엔터티에 대한 관련 SalesOrderHeader 개체를 로드하는 예제입니다.

// Specify the customer ID.
int contactID = 4332;

using (AdventureWorksEntities context =
    new AdventureWorksEntities())
{
    context.ContextOptions.LazyLoadingEnabled = false;

    // Get a specified customer by contact ID.
    var contact =
        (from c in context.Contacts
         where c.ContactID == contactID
         select c).First();

    // Load the orders for the customer explicitly.
    if (!contact.SalesOrderHeaders.IsLoaded)
    {
        contact.SalesOrderHeaders.Load();
    }

    foreach (SalesOrderHeader order in contact.SalesOrderHeaders)
    {
        // Load the items for the order if not already loaded.
        if (!order.SalesOrderDetails.IsLoaded)
        {
            order.SalesOrderDetails.Load();
        }

        Console.WriteLine(String.Format("PO Number: {0}",
            order.PurchaseOrderNumber));
        Console.WriteLine(String.Format("Order Date: {0}",
            order.OrderDate.ToString()));
        Console.WriteLine("Order items:");
        foreach (SalesOrderDetail item in order.SalesOrderDetails)
        {
            Console.WriteLine(String.Format("Product: {0} "
                + "Quantity: {1}", item.ProductID.ToString(),
                item.OrderQty.ToString()));
        }
    }
}

설명

이 메서드는 컬렉션을 로드하기 전에 내부 RelatedEnd.ValidateLoad 메서드를 호출하여 Load 호출에 올바른 조건이 있는지 확인합니다. RelatedEnd.ValidateLoad 메서드는 다음을 확인합니다.

컬렉션의 개체가 이미 ObjectContext로드된 경우 Load 메서드는 mergeOption 매개 변수에 지정된 MergeOption 적용합니다. 자세한 내용은 ID 확인, 상태 관리 및 변경 내용 추적참조하세요.

관련 개체를 명시적으로 로드하려면 탐색 속성에서 반환된 관련 끝에서 Load 메서드를 호출해야 합니다. 일대다 관계의 경우 EntityCollection<TEntity>Load 메서드를 호출합니다. 일대일 관계의 경우 EntityReference<TEntity>Load 호출합니다. 그러면 관련 개체 데이터가 개체 컨텍스트로 로드됩니다. foreach 루프(Visual Basic의For Each...Next)를 사용하여 반환된 결과 컬렉션을 열거하고 결과의 각 엔터티에 대한 EntityReference<TEntity>EntityCollection<TEntity> 속성에 대해 Load 메서드를 조건부로 호출할 수 있습니다.

Load 메서드는 IsLoadedtrue여부와 관계없이 데이터 원본에서 관련 개체를 로드합니다.

메모

foreach(C#) 또는 For Each(Visual Basic) 열거형 중에 Load 메서드를 호출하면 Object Services에서 새 데이터 판독기를 열려고 시도합니다. 연결 문자열에 multipleactiveresultsets=true 지정하여 여러 활성 결과 집합을 사용하도록 설정하지 않으면 이 작업이 실패합니다. 쿼리 결과를 List<T> 컬렉션에 로드할 수도 있습니다. 이렇게 하면 데이터 판독기를 닫고 참조된 개체를 로드하기 위해 컬렉션을 열거할 수 있습니다.

EntityCollection<TEntity>.Load 메서드는 EntityReference<TEntity>.Load 메서드와 동기화됩니다.

적용 대상