次の方法で共有


DbExpressionBuilder.Skip メソッド

定義

オーバーロード

Skip(DbSortExpression, DbExpression)

指定の順序で並べ替えられた入力セットから指定数の要素をスキップする新しい DbSkipExpression を作成します。

Skip(DbExpressionBinding, IEnumerable<DbSortClause>, DbExpression)

指定した並べ替え仕様に従って指定した入力セットを並べ替えた後、指定数の要素をスキップする新しい DbSkipExpression を作成します。

Skip(DbSortExpression, DbExpression)

指定の順序で並べ替えられた入力セットから指定数の要素をスキップする新しい DbSkipExpression を作成します。

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

パラメーター

argument
DbSortExpression

並べ替えた入力セットを指定する DbSortExpression

count
DbExpression

順序付けされたセットの要素のうち、スキップする要素数を指定する式。

戻り値

スキップ操作を表す新しい DbSkipExpression。

例外

引数または count が null です。

count が ではない DbConstantExpressionDbParameterReferenceExpression 、または 64 ビット整数型に等しくないか、昇格可能な結果型を持っています。

適用対象

Skip(DbExpressionBinding, IEnumerable<DbSortClause>, DbExpression)

指定した並べ替え仕様に従って指定した入力セットを並べ替えた後、指定数の要素をスキップする新しい DbSkipExpression を作成します。

public static System.Data.Entity.Core.Common.CommandTrees.DbSkipExpression Skip (this System.Data.Entity.Core.Common.CommandTrees.DbExpressionBinding input, System.Collections.Generic.IEnumerable<System.Data.Entity.Core.Common.CommandTrees.DbSortClause> sortOrder, System.Data.Entity.Core.Common.CommandTrees.DbExpression count);
static member Skip : System.Data.Entity.Core.Common.CommandTrees.DbExpressionBinding * seq<System.Data.Entity.Core.Common.CommandTrees.DbSortClause> * System.Data.Entity.Core.Common.CommandTrees.DbExpression -> System.Data.Entity.Core.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。

例外

input、sortOrder、count が null、または sortOrder に null が含まれています。

sortOrder が空であるか、count が ではない DbConstantExpressionDbParameterReferenceExpression 、または 64 ビット整数型と等しくないか、昇格可能でない結果の型を持っています。

適用対象