TypedTableBaseExtensions.OrderBy Metodo
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Ordina in senso crescente le righe di un oggetto TypedTableBase<T>.
Overload
OrderBy<TRow,TKey>(TypedTableBase<TRow>, Func<TRow,TKey>) |
Ordina in senso crescente le righe di un oggetto TypedTableBase<T> secondo la chiave specificata. |
OrderBy<TRow,TKey>(TypedTableBase<TRow>, Func<TRow,TKey>, IComparer<TKey>) |
Ordina in senso crescente le righe di un oggetto TypedTableBase<T> secondo la chiave e l'operatore di confronto specificati. |
OrderBy<TRow,TKey>(TypedTableBase<TRow>, Func<TRow,TKey>)
- Source:
- TypedTableBaseExtensions.cs
- Source:
- TypedTableBaseExtensions.cs
- Source:
- TypedTableBaseExtensions.cs
Ordina in senso crescente 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> ^ 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)
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
OrderBy<TRow,TKey>(TypedTableBase<TRow>, Func<TRow,TKey>, IComparer<TKey>)
- Source:
- TypedTableBaseExtensions.cs
- Source:
- TypedTableBaseExtensions.cs
- Source:
- TypedTableBaseExtensions.cs
Ordina in senso crescente 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> ^ 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)
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.