Share via


SkipTokenHandler.ApplyTo Method

Definition

Overloads

ApplyTo(IQueryable, SkipTokenQueryOption)

Apply the $skiptoken query to the given IQueryable.

ApplyTo<T>(IQueryable<T>, SkipTokenQueryOption)

Apply the $skiptoken query to the given IQueryable.

ApplyTo(IQueryable, SkipTokenQueryOption)

Apply the $skiptoken query to the given IQueryable.

public abstract System.Linq.IQueryable ApplyTo (System.Linq.IQueryable query, Microsoft.AspNet.OData.Query.SkipTokenQueryOption skipTokenQueryOption);
abstract member ApplyTo : System.Linq.IQueryable * Microsoft.AspNet.OData.Query.SkipTokenQueryOption -> System.Linq.IQueryable
Public MustOverride Function ApplyTo (query As IQueryable, skipTokenQueryOption As SkipTokenQueryOption) As IQueryable

Parameters

query
IQueryable

The original IQueryable.

skipTokenQueryOption
SkipTokenQueryOption

The query option that contains all the relevant information for applying skiptoken.

Returns

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

Applies to

ApplyTo<T>(IQueryable<T>, SkipTokenQueryOption)

Apply the $skiptoken query to the given IQueryable.

public abstract System.Linq.IQueryable<T> ApplyTo<T> (System.Linq.IQueryable<T> query, Microsoft.AspNet.OData.Query.SkipTokenQueryOption skipTokenQueryOption);
abstract member ApplyTo : System.Linq.IQueryable<'T> * Microsoft.AspNet.OData.Query.SkipTokenQueryOption -> System.Linq.IQueryable<'T>
Public MustOverride Function ApplyTo(Of T) (query As IQueryable(Of T), skipTokenQueryOption As SkipTokenQueryOption) As IQueryable(Of T)

Type Parameters

T

Parameters

query
IQueryable<T>

The original IQueryable.

skipTokenQueryOption
SkipTokenQueryOption

The query option that contains all the relevant information for applying skiptoken.

Returns

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

Applies to