Table of Contents

Method Skip

Namespace
MongoDB.Driver.Linq
Assembly
MongoDB.Driver.dll

Skip<TSource>(IQueryable<TSource>, long)

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

public static IQueryable<TSource> Skip<TSource>(this IQueryable<TSource> source, long count)

Parameters

source IQueryable<TSource>

An IQueryable<T> to return elements from.

count long

The number of elements to skip before returning the remaining elements.

Returns

IQueryable<TSource>

An IQueryable<T> that contains elements that occur after the specified index in the input sequence.

Type Parameters

TSource

The type of the elements of source