ODataQuery<T> Constructors
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
ODataQuery<T>() |
Initializes a new instance of empty ODataQuery. |
ODataQuery<T>(Expression<Func<T,Boolean>>) |
Initializes a new instance of ODataQuery with filter. |
ODataQuery<T>(String) |
Initializes a new instance of ODataQuery with filter. |
ODataQuery<T>()
Initializes a new instance of empty ODataQuery.
public ODataQuery();
Public Sub New ()
Applies to
ODataQuery<T>(Expression<Func<T,Boolean>>)
Initializes a new instance of ODataQuery with filter.
public ODataQuery(System.Linq.Expressions.Expression<Func<T,bool>> filter);
new Microsoft.Rest.Azure.OData.ODataQuery<'T> : System.Linq.Expressions.Expression<Func<'T, bool>> -> Microsoft.Rest.Azure.OData.ODataQuery<'T>
Public Sub New (filter As Expression(Of Func(Of T, Boolean)))
Parameters
- filter
- Expression<Func<T,Boolean>>
Filter expression.
Applies to
ODataQuery<T>(String)
Initializes a new instance of ODataQuery with filter.
public ODataQuery(string odataExpression);
new Microsoft.Rest.Azure.OData.ODataQuery<'T> : string -> Microsoft.Rest.Azure.OData.ODataQuery<'T>
Public Sub New (odataExpression As String)
Parameters
- odataExpression
- String
OData expression.
Applies to
Samarbeta med oss på GitHub
Källan för det här innehållet finns på GitHub, där du även kan skapa och granska ärenden och pull-begäranden. Se vår deltagarguide för mer information.
Azure SDK for .NET