AsyncQueryableExtensions.Skip<TEntity> 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 query and returns the remaining elements.
public static Microsoft.VisualStudio.ProjectSystem.Query.IAsyncQueryable<TEntity> Skip<TEntity> (this Microsoft.VisualStudio.ProjectSystem.Query.IAsyncQueryable<TEntity> source, int skipCount) where TEntity : Microsoft.VisualStudio.ProjectSystem.Query.IEntity;
static member Skip : Microsoft.VisualStudio.ProjectSystem.Query.IAsyncQueryable<'Entity (requires 'Entity :> Microsoft.VisualStudio.ProjectSystem.Query.IEntity)> * int -> Microsoft.VisualStudio.ProjectSystem.Query.IAsyncQueryable<'Entity (requires 'Entity :> Microsoft.VisualStudio.ProjectSystem.Query.IEntity)> (requires 'Entity :> Microsoft.VisualStudio.ProjectSystem.Query.IEntity)
<Extension()>
Public Function Skip(Of TEntity As IEntity) (source As IAsyncQueryable(Of TEntity), skipCount As Integer) As IAsyncQueryable(Of TEntity)
Type Parameters
- TEntity
Type of the elements in the query.
Parameters
- source
- IAsyncQueryable<TEntity>
The query provides the elements to filter out.
- skipCount
- Int32
The number of elements to skip before retaining the remaining elements.
Returns
A new query where the new filter will be applied.