Namespace:   System.Web.OData.Query
Assembly:  System.Web.OData (in System.Web.OData.dll)
Overload List
| Name | Description | |
|---|---|---|
| .jpeg) | ApplyTo(IQueryable) | Apply the individual query to the given IQueryable in the right order.(Overrides ODataQueryOptions.ApplyTo(IQueryable).) | 
| .jpeg) | ApplyTo(IQueryable, AllowedQueryOptions) | Apply the individual query to the given IQueryable in the right order. (Inherited from ODataQueryOptions.) | 
| .jpeg) | ApplyTo(IQueryable, ODataQuerySettings) | Apply the individual query to the given IQueryable in the right order.(Overrides ODataQueryOptions.ApplyTo(IQueryable, ODataQuerySettings).) | 
| .jpeg) | ApplyTo(IQueryable, ODataQuerySettings, AllowedQueryOptions) | Apply the individual query to the given IQueryable in the right order. (Inherited from ODataQueryOptions.) | 
| .jpeg) | ApplyTo(Object, ODataQuerySettings) | Applies the query to the given entity using the given ODataQuerySettings.(Inherited from ODataQueryOptions.) | 
| .jpeg) | ApplyTo(Object, ODataQuerySettings, AllowedQueryOptions) | Apply the individual query to the given IQueryable in the right order. (Inherited from ODataQueryOptions.) | 
See Also
ODataQueryOptions<TEntity> Class
System.Web.OData.Query Namespace
Return to top
ODataQueryOptions<TEntity>.ApplyTo Method (IQueryable)
Apply the individual query to the given IQueryable in the right order.
Syntax
public override IQueryable ApplyTo(
    IQueryable query
)
public:
virtual IQueryable^ ApplyTo(
    IQueryable^ query
) override
override ApplyTo : 
        query:IQueryable -> IQueryable
Public Overrides Function ApplyTo (
    query As IQueryable
) As IQueryable
Parameters
- query 
 Type: System.Linq.IQueryable- The original IQueryable. 
Return Value
Type: System.Linq.IQueryable
The new IQueryable after the query has been applied to.
Return to top
ODataQueryOptions<TEntity>.ApplyTo Method (IQueryable, ODataQuerySettings)
Apply the individual query to the given IQueryable in the right order.
Syntax
public override IQueryable ApplyTo(
    IQueryable query,
    ODataQuerySettings querySettings
)
public:
virtual IQueryable^ ApplyTo(
    IQueryable^ query,
    ODataQuerySettings^ querySettings
) override
override ApplyTo : 
        query:IQueryable *
        querySettings:ODataQuerySettings -> IQueryable
Public Overrides 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 settings to use in query composition. 
Return Value
Type: System.Linq.IQueryable
The new IQueryable after the query has been applied to.
Return to top