7 using System.Collections.Generic;
52 public IDictionary<string, string>
options {
get; set; } =
new Dictionary<string, string>();
82 IDictionary<string, string>
options = null)
84 this.table_name = table_name ??
"";
85 this.view_name = view_name ??
"";
86 this.column_name = column_name ??
"";
89 this.options =
options ??
new Dictionary<string, string>();
string column_name
Name of a column on which the operation would be applied.
IDictionary< string, string > options
Optional parameters.
string view_name
If provided, then this will be the name of the view containing the results.
long count
The number of records passing the range filter.
double lower_bound
Value of the lower bound (inclusive).
A set of parameters for /filter/byrange.
A set of results returned by /filter/byrange.
string table_name
Name of the table on which the filter by range operation will be performed.
KineticaData - class to help with Avro Encoding for Kinetica
FilterByRangeRequest(string table_name, string view_name, string column_name, double lower_bound, double upper_bound, IDictionary< string, string > options=null)
Constructs a FilterByRangeRequest object with the specified parameters.
FilterByRangeRequest()
Constructs a FilterByRangeRequest object with default parameters.
double upper_bound
Value of the upper bound (inclusive).