QueryableMethodTranslatingExpressionVisitor.TranslateSkip Method      
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Translates Skip<TSource>(IQueryable<TSource>, Int32) method over the given source.
protected abstract Microsoft.EntityFrameworkCore.Query.ShapedQueryExpression TranslateSkip(Microsoft.EntityFrameworkCore.Query.ShapedQueryExpression source, System.Linq.Expressions.Expression count);
	protected abstract Microsoft.EntityFrameworkCore.Query.ShapedQueryExpression? TranslateSkip(Microsoft.EntityFrameworkCore.Query.ShapedQueryExpression source, System.Linq.Expressions.Expression count);
	abstract member TranslateSkip : Microsoft.EntityFrameworkCore.Query.ShapedQueryExpression * System.Linq.Expressions.Expression -> Microsoft.EntityFrameworkCore.Query.ShapedQueryExpression
	Protected MustOverride 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.