Defines a field name and the order type used to sort query results.
Description
The SortField class allows you to define a field used to sort query results. In addition, it allows you to specify the order type as ascending or descending.
Constructors
Creates a new instance and assigns its values.
public
constructor(name: string = null, ascending: boolean = true)
- name: string - name of the field to sort by.
- ascending: boolean - true to sort in ascending order, and false to sort in descending order.
Fields
Examples
let filter = FilterParams.fromTuples("type", "Type1");
let paging = new PagingParams(0, 100);
let sorting = new SortingParams(new SortField("create_time", true));
let result = await myDataClient.getDataByFilter(filter, paging, sorting);