QueryBuilder.Skip<'T,'Q> Method (F#)

A query operator that bypasses a specified number of the elements selected so far and selects the remaining elements.

Namespace/Module Path: Microsoft.FSharp.Linq

Assembly: FSharp.Core (in FSharp.Core.dll)

// Signature:
member this.Skip : QuerySource<'T,'Q> * int -> QuerySource<'T,'Q>

// Usage:
queryBuilder.Skip (source, count)

Parameters

  • source
    Type: QuerySource<'T,'Q>

    The input query.

  • count
    Type: int

    The number of elements to skip.

Return Value

The resulting query.

Remarks

For more information and examples, see Query Expressions (F#).

Platforms

Windows 8, Windows 7, Windows Server 2012, Windows Server 2008 R2

Version Information

F# Core Library Versions

Supported in: 4.0Supported in: 4.0, Portable

See Also

Reference

Linq.QueryBuilder Class (F#)

Microsoft.FSharp.Linq Namespace (F#)

Query Expressions (F#)