Share via


SkipTokenQueryOption.ApplyTo Method

Definition

Overloads

ApplyTo(IQueryable, ODataQuerySettings, ODataQueryOptions)

Apply the $skiptoken query to the given IQueryable.

ApplyTo<T>(IQueryable<T>, ODataQuerySettings, ODataQueryOptions)

Apply the $skiptoken query to the given IQueryable.

ApplyTo(IQueryable, ODataQuerySettings, ODataQueryOptions)

Apply the $skiptoken query to the given IQueryable.

public virtual System.Linq.IQueryable ApplyTo (System.Linq.IQueryable query, Microsoft.AspNet.OData.Query.ODataQuerySettings querySettings, Microsoft.AspNet.OData.Query.ODataQueryOptions queryOptions);
abstract member ApplyTo : System.Linq.IQueryable * Microsoft.AspNet.OData.Query.ODataQuerySettings * Microsoft.AspNet.OData.Query.ODataQueryOptions -> System.Linq.IQueryable
override this.ApplyTo : System.Linq.IQueryable * Microsoft.AspNet.OData.Query.ODataQuerySettings * Microsoft.AspNet.OData.Query.ODataQueryOptions -> System.Linq.IQueryable
Public Overridable Function ApplyTo (query As IQueryable, querySettings As ODataQuerySettings, queryOptions As ODataQueryOptions) As IQueryable

Parameters

query
IQueryable

The original IQueryable.

querySettings
ODataQuerySettings

The query settings to use while applying this query option.

queryOptions
ODataQueryOptions

Information about the other query options.

Returns

The new IQueryable after the skiptoken query has been applied to.

Applies to

ApplyTo<T>(IQueryable<T>, ODataQuerySettings, ODataQueryOptions)

Apply the $skiptoken query to the given IQueryable.

public virtual System.Linq.IQueryable<T> ApplyTo<T> (System.Linq.IQueryable<T> query, Microsoft.AspNet.OData.Query.ODataQuerySettings querySettings, Microsoft.AspNet.OData.Query.ODataQueryOptions queryOptions);
abstract member ApplyTo : System.Linq.IQueryable<'T> * Microsoft.AspNet.OData.Query.ODataQuerySettings * Microsoft.AspNet.OData.Query.ODataQueryOptions -> System.Linq.IQueryable<'T>
override this.ApplyTo : System.Linq.IQueryable<'T> * Microsoft.AspNet.OData.Query.ODataQuerySettings * Microsoft.AspNet.OData.Query.ODataQueryOptions -> System.Linq.IQueryable<'T>
Public Overridable Function ApplyTo(Of T) (query As IQueryable(Of T), querySettings As ODataQuerySettings, queryOptions As ODataQueryOptions) As IQueryable(Of T)

Type Parameters

T

Parameters

query
IQueryable<T>

The original IQueryable.

querySettings
ODataQuerySettings

The query settings to use while applying this query option.

queryOptions
ODataQueryOptions

Information about the other query options.

Returns

The new IQueryable after the skiptoken query has been applied to.

Applies to