OrderByPropertyNode Constructor
Namespace: System.Web.Http.OData.Query
Assembly: System.Web.Http.OData (in System.Web.Http.OData.dll)
Overload List
Name | Description | |
---|---|---|
OrderByPropertyNode(IEdmProperty, OrderByDirection) | Initializes a new instance of the OrderByPropertyNode class. |
|
OrderByPropertyNode(OrderByClause) | Initializes a new instance of the OrderByPropertyNode class. |
See Also
OrderByPropertyNode Class
System.Web.Http.OData.Query Namespace
Return to top
OrderByPropertyNode Constructor (IEdmProperty, OrderByDirection)
Initializes a new instance of the OrderByPropertyNode class.
Syntax
public OrderByPropertyNode(
IEdmProperty property,
OrderByDirection direction
)
public:
OrderByPropertyNode(
IEdmProperty^ property,
OrderByDirection direction
)
new :
property:IEdmProperty *
direction:OrderByDirection -> OrderByPropertyNode
Public Sub New (
property As IEdmProperty,
direction As OrderByDirection
)
Parameters
property
Type: Microsoft.Data.Edm.IEdmPropertyThe IEdmProperty for this node.
direction
Type: Microsoft.Data.OData.Query.OrderByDirectionThe OrderByDirection for this node.
Return to top
OrderByPropertyNode Constructor (OrderByClause)
Initializes a new instance of the OrderByPropertyNode class.
Syntax
public OrderByPropertyNode(
OrderByClause orderByClause
)
public:
OrderByPropertyNode(
OrderByClause^ orderByClause
)
new :
orderByClause:OrderByClause -> OrderByPropertyNode
Public Sub New (
orderByClause As OrderByClause
)
Parameters
orderByClause
Type: Microsoft.Data.OData.Query.SemanticAst.OrderByClauseThe orderby clause representing property access.
Return to top