TypedTableBaseExtensions.OrderByDescending Metodo

Definizione

Ordina in senso decrescente le righe di un oggetto TypedTableBase<T>.

Overload

OrderByDescending<TRow,TKey>(TypedTableBase<TRow>, Func<TRow,TKey>)

Ordina in senso decrescente le righe di un oggetto TypedTableBase<T> secondo la chiave specificata.

OrderByDescending<TRow,TKey>(TypedTableBase<TRow>, Func<TRow,TKey>, IComparer<TKey>)

Ordina in senso decrescente le righe di un oggetto TypedTableBase<T> secondo la chiave e l'operatore di confronto specificati.

OrderByDescending<TRow,TKey>(TypedTableBase<TRow>, Func<TRow,TKey>)

Origine:
TypedTableBaseExtensions.cs
Origine:
TypedTableBaseExtensions.cs
Origine:
TypedTableBaseExtensions.cs

Ordina in senso decrescente le righe di un oggetto TypedTableBase<T> secondo la chiave specificata.

public:
generic <typename TRow, typename TKey>
 where TRow : System::Data::DataRow[System::Runtime::CompilerServices::Extension]
 static System::Data::OrderedEnumerableRowCollection<TRow> ^ OrderByDescending(System::Data::TypedTableBase<TRow> ^ source, Func<TRow, TKey> ^ keySelector);
public static System.Data.OrderedEnumerableRowCollection<TRow> OrderByDescending<TRow,TKey> (this System.Data.TypedTableBase<TRow> source, Func<TRow,TKey> keySelector) where TRow : System.Data.DataRow;
static member OrderByDescending : 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 OrderByDescending(Of TRow As DataRow, TKey As DataRow) (source As TypedTableBase(Of TRow), keySelector As Func(Of TRow, TKey)) As OrderedEnumerableRowCollection(Of TRow)

Parametri di tipo

TRow

Tipo degli elementi riga in source, in genere DataRow.

TKey

Tipo della chiave restituita dall'oggetto keySelector.

Parametri

source
TypedTableBase<TRow>

Oggetto TypedTableBase<T> che contiene gli elementi DataRow da ordinare.

keySelector
Func<TRow,TKey>

Funzione per estrarre una chiave da un elemento.

Restituisce

Oggetto OrderedEnumerableRowCollection<TRow> i cui elementi vengono ordinati secondo la chiave specificata.

Si applica a

OrderByDescending<TRow,TKey>(TypedTableBase<TRow>, Func<TRow,TKey>, IComparer<TKey>)

Origine:
TypedTableBaseExtensions.cs
Origine:
TypedTableBaseExtensions.cs
Origine:
TypedTableBaseExtensions.cs

Ordina in senso decrescente le righe di un oggetto TypedTableBase<T> secondo la chiave e l'operatore di confronto specificati.

public:
generic <typename TRow, typename TKey>
 where TRow : System::Data::DataRow[System::Runtime::CompilerServices::Extension]
 static System::Data::OrderedEnumerableRowCollection<TRow> ^ OrderByDescending(System::Data::TypedTableBase<TRow> ^ source, Func<TRow, TKey> ^ keySelector, System::Collections::Generic::IComparer<TKey> ^ comparer);
public static System.Data.OrderedEnumerableRowCollection<TRow> OrderByDescending<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 OrderByDescending : 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 OrderByDescending(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)

Parametri di tipo

TRow

Tipo degli elementi riga in source, in genere DataRow.

TKey

Tipo della chiave restituita dall'oggetto keySelector.

Parametri

source
TypedTableBase<TRow>

Oggetto TypedTableBase<T> che contiene gli elementi DataRow da ordinare.

keySelector
Func<TRow,TKey>

Funzione per estrarre una chiave da un elemento.

comparer
IComparer<TKey>

Oggetto IComparer<T> per confrontare le chiavi.

Restituisce

Oggetto OrderedEnumerableRowCollection<TRow> i cui elementi vengono ordinati secondo la chiave e l'operatore di confronto specificati.

Si applica a