Partager via


SkipTokenQueryOption.ApplyTo Méthode

Définition

Surcharges

ApplyTo(IQueryable, ODataQuerySettings, ODataQueryOptions)

Appliquez la requête $skiptoken à l’objet IQueryable donné.

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

Appliquez la requête $skiptoken à l’objet IQueryable donné.

ApplyTo(IQueryable, ODataQuerySettings, ODataQueryOptions)

Appliquez la requête $skiptoken à l’objet IQueryable donné.

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

Paramètres

query
IQueryable

IQueryable d'origine.

querySettings
ODataQuerySettings

Paramètres de requête à utiliser lors de l'application de cette option de requête.

queryOptions
ODataQueryOptions

Informations sur les autres options de requête.

Retours

Nouveau IQueryable après l’application de la requête skiptoken.

S’applique à

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

Appliquez la requête $skiptoken à l’objet IQueryable donné.

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)

Paramètres de type

T

Paramètres

query
IQueryable<T>

IQueryable d'origine.

querySettings
ODataQuerySettings

Paramètres de requête à utiliser lors de l'application de cette option de requête.

queryOptions
ODataQueryOptions

Informations sur les autres options de requête.

Retours

Nouveau IQueryable après l’application de la requête skiptoken.

S’applique à