QueryExtensions.SortBy<T>(IQueryable<T>, String) 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
정렬 순서를 지정합니다.
public:
generic <typename T>
where T : class[System::Runtime::CompilerServices::Extension]
static System::Linq::IQueryable<T> ^ SortBy(System::Linq::IQueryable<T> ^ source, System::String ^ sortExpression);
public static System.Linq.IQueryable<T> SortBy<T> (this System.Linq.IQueryable<T> source, string sortExpression) where T : class;
static member SortBy : System.Linq.IQueryable<'T (requires 'T : null)> * string -> System.Linq.IQueryable<'T (requires 'T : null)> (requires 'T : null)
<Extension()>
Public Function SortBy(Of T As Class) (source As IQueryable(Of T), sortExpression As String) As IQueryable(Of T)
형식 매개 변수
- T
개체의 제네릭 형식입니다.
매개 변수
- source
- IQueryable<T>
정렬할 개체입니다.
- sortExpression
- String
정렬 식입니다.
반환
source
개체의 정렬된 버전입니다.