TypedTableBaseExtensions.OrderBy 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
TypedTableBase<T>의 행을 오름차순으로 정렬합니다.
오버로드
OrderBy<TRow,TKey>(TypedTableBase<TRow>, Func<TRow,TKey>) |
TypedTableBase<T>의 행을 지정된 키에 따라 오름차순으로 정렬합니다. |
OrderBy<TRow,TKey>(TypedTableBase<TRow>, Func<TRow,TKey>, IComparer<TKey>) |
TypedTableBase<T>의 행을 지정된 키 및 비교자에 따라 오름차순으로 정렬합니다. |
OrderBy<TRow,TKey>(TypedTableBase<TRow>, Func<TRow,TKey>)
- Source:
- TypedTableBaseExtensions.cs
- Source:
- TypedTableBaseExtensions.cs
- Source:
- TypedTableBaseExtensions.cs
TypedTableBase<T>의 행을 지정된 키에 따라 오름차순으로 정렬합니다.
public:
generic <typename TRow, typename TKey>
where TRow : System::Data::DataRow[System::Runtime::CompilerServices::Extension]
static System::Data::OrderedEnumerableRowCollection<TRow> ^ OrderBy(System::Data::TypedTableBase<TRow> ^ source, Func<TRow, TKey> ^ keySelector);
public static System.Data.OrderedEnumerableRowCollection<TRow> OrderBy<TRow,TKey> (this System.Data.TypedTableBase<TRow> source, Func<TRow,TKey> keySelector) where TRow : System.Data.DataRow;
static member OrderBy : System.Data.TypedTableBase<'Row (requires 'Row :> System.Data.DataRow)> * Func<'Row, 'Key (requires 'Row :> System.Data.DataRow)> -> System.Data.OrderedEnumerableRowCollection<'Row (requires 'Row :> System.Data.DataRow)> (requires 'Row :> System.Data.DataRow)
<Extension()>
Public Function OrderBy(Of TRow As DataRow, TKey As DataRow) (source As TypedTableBase(Of TRow), keySelector As Func(Of TRow, TKey)) As OrderedEnumerableRowCollection(Of TRow)
형식 매개 변수
- TRow
source
의 행 요소의 형식으로, 일반적으로 DataRow입니다.
- TKey
keySelector
에서 반환하는 키의 형식입니다.
매개 변수
- source
- TypedTableBase<TRow>
순서를 지정할 TypedTableBase<T> 요소가 들어 있는 DataRow입니다.
- keySelector
- Func<TRow,TKey>
요소에서 키를 추출하는 함수입니다.
반환
요소가 지정된 키에 따라 정렬된 OrderedEnumerableRowCollection<TRow>입니다.
적용 대상
OrderBy<TRow,TKey>(TypedTableBase<TRow>, Func<TRow,TKey>, IComparer<TKey>)
- Source:
- TypedTableBaseExtensions.cs
- Source:
- TypedTableBaseExtensions.cs
- Source:
- TypedTableBaseExtensions.cs
TypedTableBase<T>의 행을 지정된 키 및 비교자에 따라 오름차순으로 정렬합니다.
public:
generic <typename TRow, typename TKey>
where TRow : System::Data::DataRow[System::Runtime::CompilerServices::Extension]
static System::Data::OrderedEnumerableRowCollection<TRow> ^ OrderBy(System::Data::TypedTableBase<TRow> ^ source, Func<TRow, TKey> ^ keySelector, System::Collections::Generic::IComparer<TKey> ^ comparer);
public static System.Data.OrderedEnumerableRowCollection<TRow> OrderBy<TRow,TKey> (this System.Data.TypedTableBase<TRow> source, Func<TRow,TKey> keySelector, System.Collections.Generic.IComparer<TKey> comparer) where TRow : System.Data.DataRow;
static member OrderBy : System.Data.TypedTableBase<'Row (requires 'Row :> System.Data.DataRow)> * Func<'Row, 'Key (requires 'Row :> System.Data.DataRow)> * System.Collections.Generic.IComparer<'Key> -> System.Data.OrderedEnumerableRowCollection<'Row (requires 'Row :> System.Data.DataRow)> (requires 'Row :> System.Data.DataRow)
<Extension()>
Public Function OrderBy(Of TRow As DataRow, TKey As DataRow) (source As TypedTableBase(Of TRow), keySelector As Func(Of TRow, TKey), comparer As IComparer(Of TKey)) As OrderedEnumerableRowCollection(Of TRow)
형식 매개 변수
- TRow
source
의 행 요소의 형식으로, 일반적으로 DataRow입니다.
- TKey
keySelector
에서 반환하는 키의 형식입니다.
매개 변수
- source
- TypedTableBase<TRow>
순서를 지정할 TypedTableBase<T> 요소가 들어 있는 DataRow입니다.
- keySelector
- Func<TRow,TKey>
요소에서 키를 추출하는 함수입니다.
- comparer
- IComparer<TKey>
키를 비교할 IComparer<T>입니다.
반환
요소가 지정된 키 및 비교자에 따라 정렬된 OrderedEnumerableRowCollection<TRow>입니다.
적용 대상
.NET