Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Namespace:   System.Web.OData.Query
Assembly:  System.Web.OData (in System.Web.OData.dll)
Overload List
| Name | Description | |
|---|---|---|
| .jpeg) | ApplyTo(IQueryable, ODataQuerySettings) | Apply the $skip query to the given IQueryable. | 
| .jpeg) | ApplyTo<T>(IQueryable<T>, ODataQuerySettings) | Apply the $skip query to the given IQueryable. | 
See Also
SkipQueryOption Class
System.Web.OData.Query Namespace
Return to top
SkipQueryOption.ApplyTo Method (IQueryable, ODataQuerySettings)
Apply the $skip query to the given IQueryable.
Syntax
public IQueryable ApplyTo(
    IQueryable query,
    ODataQuerySettings querySettings
)
public:
IQueryable^ ApplyTo(
    IQueryable^ query,
    ODataQuerySettings^ querySettings
)
member ApplyTo : 
        query:IQueryable *
        querySettings:ODataQuerySettings -> IQueryable
Public Function ApplyTo (
    query As IQueryable,
    querySettings As ODataQuerySettings
) As IQueryable
Parameters
- query 
 Type: System.Linq.IQueryable- The original IQueryable. 
- querySettings 
 Type: System.Web.OData.Query.ODataQuerySettings- The query settings to use while applying this query option. 
Return Value
Type: System.Linq.IQueryable
The new IQueryable after the skip query has been applied to.
Return to top
SkipQueryOption.ApplyTo<T> Method (IQueryable<T>, ODataQuerySettings)
Apply the $skip query to the given IQueryable.
Syntax
public IQueryable<T> ApplyTo<T>(
    IQueryable<T> query,
    ODataQuerySettings querySettings
)
public:
generic<typename T>
IQueryable<T>^ ApplyTo(
    IQueryable<T>^ query,
    ODataQuerySettings^ querySettings
)
member ApplyTo<'T> : 
        query:IQueryable<'T> *
        querySettings:ODataQuerySettings -> IQueryable<'T>
Public Function ApplyTo(Of T) (
    query As IQueryable(Of T),
    querySettings As ODataQuerySettings
) As IQueryable(Of T)
Parameters
- query 
 Type: System.Linq.IQueryable<T>- The original IQueryable. 
- querySettings 
 Type: System.Web.OData.Query.ODataQuerySettings- The query settings to use while applying this query option. 
Return Value
Type: System.Linq.IQueryable<T>
The new IQueryable after the skip query has been applied to.
Type Parameters
- T
Return to top