7 using System.Collections.Generic;
90 public IDictionary<string, string>
options {
get;
set; } =
new Dictionary<string, string>();
131 IDictionary<string, string>
options = null)
133 this.table_name = table_name ??
"";
134 this.view_name = view_name ??
"";
135 this.column_name = column_name ??
"";
153 public long count {
get;
set; }
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.
double lower_bound
Value of the lower bound (inclusive).
A set of parameters for Kinetica.filterByRange(string,string,string,double,double,IDictionary<string, string>).
A set of results returned by Kinetica.filterByRange(string,string,string,double,double,IDictionary<string, string>).
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.
const string COLLECTION_NAME
Name of a collection which is to contain the newly created view.
FilterByRangeRequest()
Constructs a FilterByRangeRequest object with default parameters.
double upper_bound
Value of the upper bound (inclusive).