TypedTableBaseExtensions.OrderBy Método
Definição
Importante
Algumas informações se referem a produtos de pré-lançamento que podem ser substancialmente modificados antes do lançamento. A Microsoft não oferece garantias, expressas ou implícitas, das informações aqui fornecidas.
Classifica as linhas de uma TypedTableBase<T> em ordem crescente.
Sobrecargas
OrderBy<TRow,TKey>(TypedTableBase<TRow>, Func<TRow,TKey>) |
Classifica as linhas de uma TypedTableBase<T> em ordem crescente de acordo com a chave especificada. |
OrderBy<TRow,TKey>(TypedTableBase<TRow>, Func<TRow,TKey>, IComparer<TKey>) |
Classifica as linhas de uma TypedTableBase<T> em ordem crescente de acordo com a chave e o comparador especificados. |
OrderBy<TRow,TKey>(TypedTableBase<TRow>, Func<TRow,TKey>)
- Origem:
- TypedTableBaseExtensions.cs
- Origem:
- TypedTableBaseExtensions.cs
- Origem:
- TypedTableBaseExtensions.cs
Classifica as linhas de uma TypedTableBase<T> em ordem crescente de acordo com a chave especificada.
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)
Parâmetros de tipo
- TRow
O tipo dos elementos de linha em source
, normalmente DataRow.
- TKey
O tipo da chave retornada por keySelector
.
Parâmetros
- source
- TypedTableBase<TRow>
Um TypedTableBase<T> que contém os elementos DataRow a serem ordenados.
- keySelector
- Func<TRow,TKey>
Uma função para extrair uma chave de um elemento.
Retornos
Uma OrderedEnumerableRowCollection<TRow> cujos elementos são classificados pela chave especificada.
Aplica-se a
OrderBy<TRow,TKey>(TypedTableBase<TRow>, Func<TRow,TKey>, IComparer<TKey>)
- Origem:
- TypedTableBaseExtensions.cs
- Origem:
- TypedTableBaseExtensions.cs
- Origem:
- TypedTableBaseExtensions.cs
Classifica as linhas de uma TypedTableBase<T> em ordem crescente de acordo com a chave e o comparador especificados.
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)
Parâmetros de tipo
- TRow
O tipo dos elementos de linha em source
, normalmente DataRow.
- TKey
O tipo da chave retornada por keySelector
.
Parâmetros
- source
- TypedTableBase<TRow>
Um TypedTableBase<T> que contém os elementos DataRow a serem ordenados.
- keySelector
- Func<TRow,TKey>
Uma função para extrair uma chave de um elemento.
- comparer
- IComparer<TKey>
Um IComparer<T> para comparar chaves.
Retornos
Uma OrderedEnumerableRowCollection<TRow> cujos elementos são classificados pela chave e o comparador especificados.