Kinetica C# API
Version 6.1.0.0
|
Public Attributes | |
const string | EXPRESSION = "expression" |
Optional filter expression to apply to the table. More... | |
const string | SORT_BY = "sort_by" |
Optional column that the data should be sorted by. More... | |
const string | SORT_ORDER = "sort_order" |
String indicating how the returned values should be sorted - ascending or descending. More... | |
const string | ASCENDING = "ascending" |
const string | DESCENDING = "descending" |
const string | ORDER_BY = "order_by" |
Comma-separated list of the columns to be sorted by; e.g. More... | |
SORT_BY: Optional column that the data should be sorted by. Empty by default (i.e. no sorting is applied). SORT_ORDER: String indicating how the returned values should be sorted - ascending or descending. If sort_order is provided, sort_by has to be provided. Supported values:
The default value is ASCENDING. ORDER_BY: Comma-separated list of the columns to be sorted by; e.g. 'timestamp asc, x desc'. The columns specified must be present in . If any alias is given for any column name, the alias must be used, rather than the original column name.
A set of string constants for the parameter options.
Definition at line 107 of file GetRecordsByColumn.cs.
const string kinetica.GetRecordsByColumnRequest.Options.ASCENDING = "ascending" |
Definition at line 135 of file GetRecordsByColumn.cs.
const string kinetica.GetRecordsByColumnRequest.Options.DESCENDING = "descending" |
Definition at line 136 of file GetRecordsByColumn.cs.
const string kinetica.GetRecordsByColumnRequest.Options.EXPRESSION = "expression" |
Optional filter expression to apply to the table.
Definition at line 112 of file GetRecordsByColumn.cs.
const string kinetica.GetRecordsByColumnRequest.Options.ORDER_BY = "order_by" |
Comma-separated list of the columns to be sorted by; e.g.
'timestamp asc, x desc'. The columns specified must be present in column_names. If any alias is given for any column name, the alias must be used, rather than the original column name.
Definition at line 143 of file GetRecordsByColumn.cs.
const string kinetica.GetRecordsByColumnRequest.Options.SORT_BY = "sort_by" |
Optional column that the data should be sorted by.
Empty by default (i.e. no sorting is applied).
Definition at line 116 of file GetRecordsByColumn.cs.
const string kinetica.GetRecordsByColumnRequest.Options.SORT_ORDER = "sort_order" |
String indicating how the returned values should be sorted - ascending or descending.
If sort_order is provided, sort_by has to be provided. Supported values:
The default value is ASCENDING.
Definition at line 134 of file GetRecordsByColumn.cs.