TypedTableBaseExtensions.OrderBy Méthode
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Trie les lignes d'un TypedTableBase<T> dans l'ordre croissant.
Surcharges
OrderBy<TRow,TKey>(TypedTableBase<TRow>, Func<TRow,TKey>) |
Trie les lignes d'un TypedTableBase<T> dans l'ordre croissant en fonction de la clé spécifiée. |
OrderBy<TRow,TKey>(TypedTableBase<TRow>, Func<TRow,TKey>, IComparer<TKey>) |
Trie les lignes d'un TypedTableBase<T> dans l'ordre croissant en fonction de la clé et du comparateur spécifiés. |
OrderBy<TRow,TKey>(TypedTableBase<TRow>, Func<TRow,TKey>)
- Source:
- TypedTableBaseExtensions.cs
- Source:
- TypedTableBaseExtensions.cs
- Source:
- TypedTableBaseExtensions.cs
Trie les lignes d'un TypedTableBase<T> dans l'ordre croissant en fonction de la clé spécifiée.
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)
Paramètres de type
- TRow
Type des éléments de ligne dans source
, en général DataRow.
- TKey
Type de clé retournée par keySelector
.
Paramètres
- source
- TypedTableBase<TRow>
TypedTableBase<T> qui contient les éléments DataRow à ordonner.
- keySelector
- Func<TRow,TKey>
Fonction permettant d'extraire une clé d'un élément.
Retours
OrderedEnumerableRowCollection<TRow> dont les éléments sont triés par la clé spécifiée.
S’applique à
OrderBy<TRow,TKey>(TypedTableBase<TRow>, Func<TRow,TKey>, IComparer<TKey>)
- Source:
- TypedTableBaseExtensions.cs
- Source:
- TypedTableBaseExtensions.cs
- Source:
- TypedTableBaseExtensions.cs
Trie les lignes d'un TypedTableBase<T> dans l'ordre croissant en fonction de la clé et du comparateur spécifiés.
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)
Paramètres de type
- TRow
Type des éléments de ligne dans source
, en général DataRow.
- TKey
Type de clé retournée par keySelector
.
Paramètres
- source
- TypedTableBase<TRow>
TypedTableBase<T> qui contient les éléments DataRow à ordonner.
- keySelector
- Func<TRow,TKey>
Fonction permettant d'extraire une clé d'un élément.
- comparer
- IComparer<TKey>
IComparer<T> pour comparer les clés.
Retours
OrderedEnumerableRowCollection<TRow> dont les éléments sont triés par la clé et le comparateur spécifiés.