Sdílet prostřednictvím


DbExpressionBuilder.Skip Metoda

Definice

Vytvoří novou DbSkipExpression , která seřadí danou vstupní sadu podle zadaných specifikací řazení před přeskočením zadaného počtu prvků.

Přetížení

Skip(DbSortExpression, DbExpression)

Vytvoří nový DbSkipExpression , který přeskočí zadaný počet prvků z dané seřazené vstupní sady.

Skip(DbExpressionBinding, IEnumerable<DbSortClause>, DbExpression)

Vytvoří novou DbSkipExpression , která seřadí danou vstupní sadu podle zadaných specifikací řazení před přeskočením zadaného počtu prvků.

Skip(DbSortExpression, DbExpression)

Vytvoří nový DbSkipExpression , který přeskočí zadaný počet prvků z dané seřazené vstupní sady.

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

Parametry

argument
DbSortExpression

A DbSortExpression , který určuje seřazenou vstupní sadu.

count
DbExpression

Výraz určuje, kolik prvků seřazené sady se má přeskočit.

Návraty

Nový DbSkipExpression, který představuje operaci přeskočení.

Výjimky

argument nebo count má hodnotu null.

count is not DbConstantExpression or DbParameterReferenceExpression has a result type that is not or is not equal or promotable to a 64-bit integer type.

Platí pro

Skip(DbExpressionBinding, IEnumerable<DbSortClause>, DbExpression)

Vytvoří novou DbSkipExpression , která seřadí danou vstupní sadu podle zadaných specifikací řazení před přeskočením zadaného počtu prvků.

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

Parametry

input
DbExpressionBinding

Vazba výrazu, která určuje vstupní sadu.

sortOrder
IEnumerable<DbSortClause>

Seznam specifikací řazení, které určují způsob řazení prvků vstupní sady.

count
DbExpression

Výraz určuje, kolik prvků seřazené sady se má přeskočit.

Návraty

Nový DbSkipExpression, který představuje operaci přeskočení.

Výjimky

input, sortOrder nebo count má hodnotu null nebo sortOrder obsahuje hodnotu null.

sortOrder je prázdný, nebo count není DbConstantExpression nebo DbParameterReferenceExpression má typ výsledku, který se nerovná 64bitovému celočíselnému typu nebo není možné ho použít.

Platí pro