Share via


OrderByPropertyNode Constructors

Definition

Overloads

OrderByPropertyNode(OrderByClause)

Initializes a new instance of the OrderByPropertyNode class.

OrderByPropertyNode(IEdmProperty, OrderByDirection)

Initializes a new instance of the OrderByPropertyNode class.

OrderByPropertyNode(OrderByClause)

Initializes a new instance of the OrderByPropertyNode class.

public OrderByPropertyNode (Microsoft.OData.UriParser.OrderByClause orderByClause);
new Microsoft.AspNet.OData.Query.OrderByPropertyNode : Microsoft.OData.UriParser.OrderByClause -> Microsoft.AspNet.OData.Query.OrderByPropertyNode
Public Sub New (orderByClause As OrderByClause)

Parameters

orderByClause
OrderByClause

The orderby clause representing property access.

Applies to

OrderByPropertyNode(IEdmProperty, OrderByDirection)

Initializes a new instance of the OrderByPropertyNode class.

public OrderByPropertyNode (Microsoft.OData.Edm.IEdmProperty property, Microsoft.OData.UriParser.OrderByDirection direction);
new Microsoft.AspNet.OData.Query.OrderByPropertyNode : Microsoft.OData.Edm.IEdmProperty * Microsoft.OData.UriParser.OrderByDirection -> Microsoft.AspNet.OData.Query.OrderByPropertyNode
Public Sub New (property As IEdmProperty, direction As OrderByDirection)

Parameters

property
IEdmProperty

The IEdmProperty for this node.

direction
OrderByDirection

The OrderByDirection for this node.

Applies to