QueryableExtensions.Skip<TSource> Method (IQueryable<TSource>, Expression<Func<Int32>>)
Bypasses a specified number of elements in a sequence and then returns the remaining elements.
Assembly: EntityFramework (in EntityFramework.dll)
[SuppressMessageAttribute("Microsoft.Design", "CA1006:DoNotNestGenericTypesInMemberSignatures")] public static IQueryable<TSource> Skip<TSource>( this IQueryable<TSource> source, Expression<Func<int>> countAccessor )
Parameters
- source
-
Type:
System.Linq.IQueryable<TSource>
A sequence to return elements from.
- countAccessor
-
Type:
System.Linq.Expressions.Expression<Func<Int32>>
An expression that evaluates to the number of elements to skip.
Return Value
Type: System.Linq.IQueryable<TSource>A sequence that contains elements that occur after the specified index in the input sequence.
Type Parameters
- TSource
The type of the elements of source.