다음을 통해 공유


방법: 복합 형식을 반환하는 쿼리 실행(EntityClient)

이 항목에서는 EntityCommand를 사용하여 복합 형식을 반환하는 Entity SQL 쿼리를 실행하는 방법을 보여 줍니다. 이 예제에서는 방법: 복합 형식으로 모델 정의(Entity Framework)에서 정의한 스키마를 사용합니다. 프로젝트 구성에 대한 자세한 내용과 개체 서비스를 사용하여 복합 형식을 반환하는 쿼리를 실행하는 방법에 대한 예제를 보려면 방법: 복합 형식으로 개체 쿼리 만들기 및 실행(Entity Framework)을 참조하십시오.

예제

다음 예제에서는 복합 형식의 쿼리를 만들고 실행하는 방법을 보여 줍니다. 복합 형식은 엔터티 유형과 같은 속성 집합만 포함하고 키 속성은 포함하지 않는 형식을 나타냅니다. CCustomer 엔터티의 Address 속성은 복합 형식으로 구현됩니다. 다음 예제에서는 CCustomer 형식의 두 속성인 CustomerIdAddress를 출력합니다. Address는 복합 형식이기 때문에 코드의 출력 값은 Address의 속성 값입니다.

Using conn As EntityConnection = New EntityConnection("name=CustomerComplexAddrContext")
    conn.Open()

    ' Create an EntityCommand.
    Using cmd As EntityCommand = conn.CreateCommand()

        ' Create a query that returns Address complex type.
        Dim esqlQuery As String = "SELECT VALUE customers FROM " & _
            "CustomerComplexAddrContext.CCustomers " & _
            "AS customers WHERE customers.CustomerId < 3"
        cmd.CommandText = esqlQuery
        ' Execute the command.
        Using rdr As EntityDataReader = cmd.ExecuteReader(CommandBehavior.SequentialAccess)
            ' The result returned by this query contains 
            ' Address complex Types.
            Do While rdr.Read
                ' Display CustomerID
                Console.WriteLine("Customer ID: {0}", _
                    rdr.Item("CustomerId"))
                ' Display Address information.
                Dim nestedRecord As DbDataRecord = DirectCast(rdr.Item("Address"), DbDataRecord)
                Console.WriteLine("Address:")
                For i = 0 To nestedRecord.FieldCount - 1
                    Console.WriteLine("  " + nestedRecord.GetName(i) & _
                            ": " + nestedRecord.GetValue(i))
                Next i
            Loop
        End Using
    End Using
    conn.Close()
End Using
using (EntityConnection conn =
    new EntityConnection("name=CustomerComplexAddrContext"))
{
    conn.Open();

    // Create a query that returns Address complex type.
    string esqlQuery =
        @"SELECT VALUE customers FROM
            CustomerComplexAddrContext.CCustomers
            AS customers WHERE customers.CustomerId < 3";
    try
    {
        // Create an EntityCommand.
        using (EntityCommand cmd = conn.CreateCommand())
        {
            cmd.CommandText = esqlQuery;
            // Execute the command.
            using (EntityDataReader rdr =
                cmd.ExecuteReader(CommandBehavior.SequentialAccess))
            {
                // The result returned by this query contains 
                // Address complex Types.
                while (rdr.Read())
                {
                    // Display CustomerID
                    Console.WriteLine("Customer ID: {0}",
                        rdr["CustomerId"]);
                    // Display Address information.
                    DbDataRecord nestedRecord =
                        rdr["Address"] as DbDataRecord;
                    Console.WriteLine("Address:");
                    for (int i = 0; i < nestedRecord.FieldCount; i++)
                    {
                        Console.WriteLine("  " + nestedRecord.GetName(i) +
                            ": " + nestedRecord.GetValue(i));
                    }
                }
            }
        }
    }
    catch (EntityException ex)
    {
        Console.WriteLine(ex.ToString());
    }
    conn.Close();
}

참고 항목

기타 리소스

EntityClient 사용(Entity Framework 작업)