QueryableExtensions.Skip<TSource> Method

Definition

Bypasses a specified number of elements in a sequence and then returns the remaining elements.

[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Design", "CA1006:DoNotNestGenericTypesInMemberSignatures")]
public static System.Linq.IQueryable<TSource> Skip<TSource> (this System.Linq.IQueryable<TSource> source, System.Linq.Expressions.Expression<Func<int>> countAccessor);
static member Skip : System.Linq.IQueryable<'Source> * System.Linq.Expressions.Expression<Func<int>> -> System.Linq.IQueryable<'Source>
<Extension()>
Public Function Skip(Of TSource) (source As IQueryable(Of TSource), countAccessor As Expression(Of Func(Of Integer))) As IQueryable(Of TSource)

Type Parameters

TSource

The type of the elements of source.

Parameters

source
IQueryable<TSource>

A sequence to return elements from.

countAccessor
Expression<Func<Int32>>

An expression that evaluates to the number of elements to skip.

Returns

IQueryable<TSource>

A sequence that contains elements that occur after the specified index in the input sequence.

Attributes

Applies to