DbExpressionBuilder.Skip 方法

定义

创建一个新的 DbSkipExpression,它在跳过指定数目的元素之前,按照指定的排序规范对给定的输入集进行排序。

重载

Skip(DbSortExpression, DbExpression)

创建一个新的 DbSkipExpression,它在给定的有序输入集中跳过指定数量的元素。

Skip(DbExpressionBinding, IEnumerable<DbSortClause>, DbExpression)

创建一个新的 DbSkipExpression,它在跳过指定数目的元素之前,按照指定的排序规范对给定的输入集进行排序。

Skip(DbSortExpression, DbExpression)

创建一个新的 DbSkipExpression,它在给定的有序输入集中跳过指定数量的元素。

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

参数

argument
DbSortExpression

指定有序输入集的 DbSortExpression

count
DbExpression

一个表达式,指定要在有序集中跳过的元素个数。

返回

表示跳过操作的新 DbSkipExpression。

例外

argumentcount 为 null。

count 不是 DbConstantExpressionDbParameterReferenceExpression 对象,或者具有不等同于或不能提升为 64 位整数类型的结果类型。

适用于

Skip(DbExpressionBinding, IEnumerable<DbSortClause>, DbExpression)

创建一个新的 DbSkipExpression,它在跳过指定数目的元素之前,按照指定的排序规范对给定的输入集进行排序。

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

参数

input
DbExpressionBinding

一个指定输入集的表达式绑定。

sortOrder
IEnumerable<DbSortClause>

确定应如何对输入集元素排序的排序规范列表。

count
DbExpression

一个表达式,指定要在有序集中跳过的元素个数。

返回

表示跳过操作的新 DbSkipExpression。

例外

inputsortOrdercount 为 null,或 sortOrder 包含 null。

sortOrder 为空,或者 count 不是 DbConstantExpressionDbParameterReferenceExpression 或具有不等同于或不能提升为 64 位整数类型的结果类型。

适用于