DbExpressionBuilder.Skip Metodo

Definizione

Crea un nuovo oggetto DbSkipExpression che ordina il set di input in base alle specifiche di ordinamento prima di ignorare il numero specificato di elementi.

Overload

Skip(DbSortExpression, DbExpression)

Crea un nuovo oggetto DbSkipExpression che ignora il numero specificato di elementi del set di input ordinato.

Skip(DbExpressionBinding, IEnumerable<DbSortClause>, DbExpression)

Crea un nuovo oggetto DbSkipExpression che ordina il set di input in base alle specifiche di ordinamento prima di ignorare il numero specificato di elementi.

Skip(DbSortExpression, DbExpression)

Crea un nuovo oggetto DbSkipExpression che ignora il numero specificato di elementi del set di input ordinato.

public:
[System::Runtime::CompilerServices::Extension]
 static System::Data::Common::CommandTrees::DbSkipExpression ^ Skip(System::Data::Common::CommandTrees::DbSortExpression ^ argument, System::Data::Common::CommandTrees::DbExpression ^ count);
public static System.Data.Common.CommandTrees.DbSkipExpression Skip (this System.Data.Common.CommandTrees.DbSortExpression argument, System.Data.Common.CommandTrees.DbExpression count);
static member Skip : System.Data.Common.CommandTrees.DbSortExpression * System.Data.Common.CommandTrees.DbExpression -> System.Data.Common.CommandTrees.DbSkipExpression
<Extension()>
Public Function Skip (argument As DbSortExpression, count As DbExpression) As DbSkipExpression

Parametri

argument
DbSortExpression

Oggetto DbSortExpression che specifica il set di input ordinato.

count
DbExpression

Espressione che specifica il numero di elementi del set ordinato da ignorare.

Restituisce

Nuovo DbSkipExpression che rappresenta l'operazione Skip.

Eccezioni

argument o count è null.

count non è un oggetto DbConstantExpression o DbParameterReferenceExpression oppure dispone di un tipo di risultato diverso da o non promuovibile a un tipo Integer a 64 bit.

Si applica a

Skip(DbExpressionBinding, IEnumerable<DbSortClause>, DbExpression)

Crea un nuovo oggetto DbSkipExpression che ordina il set di input in base alle specifiche di ordinamento prima di ignorare il numero specificato di elementi.

public:
[System::Runtime::CompilerServices::Extension]
 static System::Data::Common::CommandTrees::DbSkipExpression ^ Skip(System::Data::Common::CommandTrees::DbExpressionBinding ^ input, System::Collections::Generic::IEnumerable<System::Data::Common::CommandTrees::DbSortClause ^> ^ sortOrder, System::Data::Common::CommandTrees::DbExpression ^ count);
public static System.Data.Common.CommandTrees.DbSkipExpression Skip (this System.Data.Common.CommandTrees.DbExpressionBinding input, System.Collections.Generic.IEnumerable<System.Data.Common.CommandTrees.DbSortClause> sortOrder, System.Data.Common.CommandTrees.DbExpression count);
static member Skip : System.Data.Common.CommandTrees.DbExpressionBinding * seq<System.Data.Common.CommandTrees.DbSortClause> * System.Data.Common.CommandTrees.DbExpression -> System.Data.Common.CommandTrees.DbSkipExpression
<Extension()>
Public Function Skip (input As DbExpressionBinding, sortOrder As IEnumerable(Of DbSortClause), count As DbExpression) As DbSkipExpression

Parametri

input
DbExpressionBinding

Associazione a un'espressione che specifica il set di input.

sortOrder
IEnumerable<DbSortClause>

Elenco di specifiche di ordinamento che determinano come ordinare gli elementi del set di input.

count
DbExpression

Espressione che specifica il numero di elementi del set ordinato da ignorare.

Restituisce

Nuovo DbSkipExpression che rappresenta l'operazione Skip.

Eccezioni

input, sortOrder o count è Null o sortOrder contiene null.

sortOrder è vuoto o count non è un oggetto DbConstantExpression o un oggetto DbParameterReferenceExpression oppure dispone di un tipo di risultato diverso da o non promuovibile a un tipo Integer a 64 bit.

Si applica a