Show / Hide Table of Contents

    Class ODataQuery<T>

    Inheritance
    Object
    ODataQuery<T>
    Namespace: System.Dynamic.ExpandoObject
    Assembly: Microsoft.Rest.ClientRuntime.Azure.dll
    Syntax
    public class ODataQuery<T>
    Type Parameters
    T

    Constructors

    ODataQuery<T>()

    Declaration
    public ODataQuery ();

    ODataQuery<T>(Expression<Func<T,Boolean>>)

    Declaration
    public ODataQuery (System.Linq.Expressions.Expression<Func<T,bool>> filter);
    Parameters
    Expression<Func<T,Boolean>> filter

    ODataQuery<T>(String)

    Declaration
    public ODataQuery (string odataExpression);
    Parameters
    String odataExpression

    Properties

    Expand

    Declaration
    public string Expand { get; set; }
    Property Value
    String

    Filter

    Declaration
    public string Filter { get; set; }
    Property Value
    String

    OrderBy

    Declaration
    public string OrderBy { get; set; }
    Property Value
    String

    Skip

    Declaration
    public Nullable<int> Skip { get; set; }
    Property Value
    Nullable<Int32>

    SkipNullFilterParameters

    Declaration
    public bool SkipNullFilterParameters { get; set; }
    Property Value
    Boolean

    Top

    Declaration
    public Nullable<int> Top { get; set; }
    Property Value
    Nullable<Int32>

    Methods

    SetFilter(Expression<Func<T,Boolean>>)

    Declaration
    public void SetFilter (System.Linq.Expressions.Expression<Func<T,bool>> filter);
    Parameters
    Expression<Func<T,Boolean>> filter

    ToString()

    Declaration
    public override string ToString ();
    Returns
    String

    Operators

    Implicit(String to ODataQuery<T>)

    Declaration
    public static implicit operator Microsoft.Rest.Azure.OData.ODataQuery<T> (string filter);
    Parameters
    String filter

    Returns
    ODataQuery<T>

    Back to top Azure SDK for Net