Share via


RelationalQueryableMethodTranslatingExpressionVisitor.TranslateSkip Method

Definition

Translates Skip<TSource>(IQueryable<TSource>, Int32) method over the given source.

protected override Microsoft.EntityFrameworkCore.Query.ShapedQueryExpression TranslateSkip (Microsoft.EntityFrameworkCore.Query.ShapedQueryExpression source, System.Linq.Expressions.Expression count);
protected override Microsoft.EntityFrameworkCore.Query.ShapedQueryExpression? TranslateSkip (Microsoft.EntityFrameworkCore.Query.ShapedQueryExpression source, System.Linq.Expressions.Expression count);
override this.TranslateSkip : Microsoft.EntityFrameworkCore.Query.ShapedQueryExpression * System.Linq.Expressions.Expression -> Microsoft.EntityFrameworkCore.Query.ShapedQueryExpression
Protected Overrides Function TranslateSkip (source As ShapedQueryExpression, count As Expression) As ShapedQueryExpression

Parameters

source
ShapedQueryExpression

The shaped query on which the operator is applied.

count
Expression

The count supplied in the call.

Returns

The shaped query after translation.

Applies to