방법: 데이터 정렬(Entity Framework)
이 항목에서는 쿼리 결과를 정렬하는 방법을 보여 줍니다. 이 예제에서는 Contact.LastName의 첫 번째 문자를 기준으로 사전순으로 정렬된 Contact 개체 컬렉션을 반환합니다. 다음의 엔터티 프레임워크 쿼리 기술을 각각 사용하여 동일한 예제를 보여 줍니다.
LINQ to Entities
ObjectQuery<T>를 사용한 Entity SQL
ObjectQuery<T>의 쿼리 작성기 메서드
이 항목의 예제는 Adventure Works Sales 모델을 기반으로 합니다. 이 예제의 코드를 실행하려면 프로젝트에 AdventureWorks Sales 모델을 추가하고 Entity Framework를 사용하도록 프로젝트를 구성해야 합니다. 이렇게 하려면 방법: Entity Framework 프로젝트 수동 구성 및 방법: 엔터티 데이터 모델 수동 정의(Entity Framework)의 절차를 수행합니다. 엔터티 데이터 모델 마법사를 사용하여 AdventureWorks Sales 모델을 정의할 수도 있습니다. 자세한 내용은 방법: 엔터티 데이터 모델 마법사 사용(Entity Framework)을 참조하십시오.
예제
다음은 LINQ to Entities 예제입니다.
Using context As AdventureWorksEntities = _
New AdventureWorksEntities()
Try
' Define a query that returns a list
' of Contact objects sorted by last name.
Dim sortedNames = _
From n In context.Contact _
Order By n.LastName _
Select n
Console.WriteLine("The sorted list of last names:")
For Each name As Contact In sortedNames
Console.WriteLine(name.LastName)
Next
Catch ex As EntitySqlException
Console.WriteLine(ex.ToString())
End Try
End Using
using (AdventureWorksEntities context =
new AdventureWorksEntities())
{
try
{
// Define a query that returns a list
// of Contact objects sorted by last name.
var sortedNames =
from n in context.Contact
orderby n.LastName
select n;
Console.WriteLine("The sorted list of last names:");
foreach (Contact name in sortedNames)
{
Console.WriteLine(name.LastName);
}
}
catch (EntitySqlException ex)
{
Console.WriteLine(ex.ToString());
}
}
다음은 Entity SQL 예제입니다.
' Define the Entity SQL query string that returns
' Contact objects sorted by last name.
Dim queryString As String = "SELECT VALUE n FROM Contact AS n " _
+ "Order By n.LastName"
Using context As AdventureWorksEntities = _
New AdventureWorksEntities()
Try
' Define an ObjectQuery that returns a collection
' of Contact objects sorted by last name.
Dim query As ObjectQuery(Of Contact) = _
New ObjectQuery(Of Contact)(queryString, context)
Console.WriteLine("The sorted list of last names:")
For Each name As Contact _
In query.Execute(MergeOption.AppendOnly)
Console.WriteLine(name.LastName)
Next
Catch ex As EntitySqlException
Console.WriteLine(ex.ToString())
End Try
End Using
// Define the Entity SQL query string that returns
// Contact objects sorted by last name.
string queryString = @"SELECT VALUE n FROM Contact AS n
Order By n.LastName";
using (AdventureWorksEntities context =
new AdventureWorksEntities())
{
try
{
// Define an ObjectQuery that returns a collection
// of Contact objects sorted by last name.
ObjectQuery<Contact> query =
new ObjectQuery<Contact>(queryString, context);
Console.WriteLine("The sorted list of last names:");
foreach (Contact name in query.Execute(MergeOption.AppendOnly))
{
Console.WriteLine(name.LastName);
}
}
catch (EntitySqlException ex)
{
Console.WriteLine(ex.ToString());
}
}
다음은 쿼리 작성기 방법을 사용한 예제입니다.
Using context As AdventureWorksEntities = _
New AdventureWorksEntities()
Try
' Define an ObjectQuery that returns a collection
' of Contact objects sorted by last name.
Dim query As ObjectQuery(Of Contact) = _
context.Contact.OrderBy("it.LastName")
Console.WriteLine("The sorted list of last names:")
For Each name As Contact _
In query.Execute(MergeOption.AppendOnly)
Console.WriteLine(name.LastName)
Next
Catch ex As EntitySqlException
Console.WriteLine(ex.ToString())
End Try
End Using
using (AdventureWorksEntities context =
new AdventureWorksEntities())
{
try
{
// Define an ObjectQuery that returns a collection
// of Contact objects sorted by last name.
ObjectQuery<Contact> query =
context.Contact.OrderBy("it.LastName");
Console.WriteLine("The sorted list of last names:");
foreach (Contact name in query.Execute(MergeOption.AppendOnly))
{
Console.WriteLine(name.LastName);
}
}
catch (EntitySqlException ex)
{
Console.WriteLine(ex.ToString());
}
}