Class OrderByItem
Defines a single sorting item
Inheritance
System.Object
OrderByItem
Namespace: PnP.Core.QueryModel
Assembly: PnP.Core.dll
Syntax
public class OrderByItem : object
Properties
Direction
The direction (Ascending/Descending) for the sorting criteria. Default: Ascending.
Declaration
public OrderByDirection Direction { get; set; }
Property Value
OrderByDirection
|
Field
The name of the field to sort by
Declaration
public string Field { get; set; }
Property Value
System.String
|