DefaultSkipTokenHandler.ApplyTo 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.
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 override System.Linq.IQueryable ApplyTo (System.Linq.IQueryable query, Microsoft.AspNet.OData.Query.SkipTokenQueryOption skipTokenQueryOption);
override this.ApplyTo : System.Linq.IQueryable * Microsoft.AspNet.OData.Query.SkipTokenQueryOption -> System.Linq.IQueryable
Public Overrides Function ApplyTo (query As IQueryable, skipTokenQueryOption As SkipTokenQueryOption) As IQueryable
Parameters
- query
- IQueryable
The original IQueryable.
- skipTokenQueryOption
- SkipTokenQueryOption
The skiptoken query option which needs to be applied to this query option.
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 override System.Linq.IQueryable<T> ApplyTo<T> (System.Linq.IQueryable<T> query, Microsoft.AspNet.OData.Query.SkipTokenQueryOption skipTokenQueryOption);
override this.ApplyTo : System.Linq.IQueryable<'T> * Microsoft.AspNet.OData.Query.SkipTokenQueryOption -> System.Linq.IQueryable<'T>
Public Overrides 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 skiptoken query option which needs to be applied to this query option.
Returns
The new IQueryable after the skiptoken query has been applied to.