ObjectQuery<T>.OrderBy(String, ObjectParameter[]) 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
지정된 조건으로 쿼리 결과를 정렬합니다.
public:
System::Data::Objects::ObjectQuery<T> ^ OrderBy(System::String ^ keys, ... cli::array <System::Data::Objects::ObjectParameter ^> ^ parameters);
public System.Data.Objects.ObjectQuery<T> OrderBy (string keys, params System.Data.Objects.ObjectParameter[] parameters);
member this.OrderBy : string * System.Data.Objects.ObjectParameter[] -> System.Data.Objects.ObjectQuery<'T>
Public Function OrderBy (keys As String, ParamArray parameters As ObjectParameter()) As ObjectQuery(Of T)
매개 변수
- keys
- String
결과를 정렬할 기준 키 열입니다.
- parameters
- ObjectParameter[]
이 메서드에 사용되는 0개 이상의 매개 변수입니다.
반환
원래 인스턴스에 ORDER BY가 적용된 것과 동일한 새 ObjectQuery<T> 인스턴스입니다.
예외
keys
또는 parameters
매개 변수가 null
인 경우
key
이 빈 문자열입니다.
예제
이 예제에서는 에서 기존 쿼리 순서ProductID
의 결과를 포함하는 새 ObjectQuery<T> 개체를 만듭니다.
using (AdventureWorksEntities context =
new AdventureWorksEntities())
{
string queryString = @"SELECT VALUE product
FROM AdventureWorksEntities.Products AS product";
ObjectQuery<Product> productQuery1 =
new ObjectQuery<Product>(queryString,
context, MergeOption.NoTracking);
ObjectQuery<Product> productQuery2 =
productQuery1.OrderBy("it.ProductID");
// Iterate through the collection of Product items.
foreach (Product result in productQuery2)
{
Console.WriteLine("{0}", result.ProductID);
}
}
설명
중첩된 쿼리에서 결과의 순서를 보장할 수 없습니다.
OrderBy 는 항상 시퀀스의 최종 쿼리 작성기 메서드여야 합니다.
적용 대상
추가 정보
GitHub에서 Microsoft와 공동 작업
이 콘텐츠의 원본은 GitHub에서 찾을 수 있으며, 여기서 문제와 끌어오기 요청을 만들고 검토할 수도 있습니다. 자세한 내용은 참여자 가이드를 참조하세요.
.NET