DbExpressionBuilder.Skip 메서드

정의

지정된 개수의 요소를 건너뛰기 전에 지정된 정렬 사양에 따라 지정된 입력 집합을 정렬하는 새 DbSkipExpression 항목을 만듭니다.

오버로드

Name Description
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

정렬된 입력 집합을 지정하는 A DbSortExpression 입니다.

count
DbExpression

순서가 지정된 집합의 건너뛸 요소 수를 지정하는 식입니다.

반품

건너뛰기 작업을 나타내는 새 DbSkipExpression입니다.

예외

argument 또는 count null입니다.

count 가 아니 DbConstantExpression 거나 DbParameterReferenceExpression 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입니다.

예외

input count 또는 sortOrder null이거나 null sortOrder 을 포함합니다.

sortOrder 가 비어 있거나 count 64비트 정수 형식과 같지 않거나 승격할 수 없는 결과 형식이 있거나 없는 DbConstantExpressionDbParameterReferenceExpression 경우

적용 대상