DbExpressionBuilder.Skip 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
지정된 수의 요소를 건너뛰기 전에 지정된 정렬 사양을 기준으로 입력 집합을 정렬하는 새 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입니다.
예외
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
, sortOrder
또는 count
가 null이거나 sortOrder
null을 포함합니다.
sortOrder
가 비어 있거나 count
가 DbConstantExpression 또는 DbParameterReferenceExpression이 아니거나 64비트 정수 형식과 동일하지 않거나 승격 가능하지 않은 결과 형식이 있습니다.
적용 대상
.NET