QueryableExtensions.Skip<TSource> 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.
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
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.
Entity Framework