7 using System.Collections.Generic;
72 public double _value {
get; set; } = 0;
94 public IDictionary<string, string>
options {
get; set; } =
new Dictionary<string, string>();
137 IDictionary<string, string>
options = null)
139 this.table_name = table_name ??
"";
140 this.view_name = view_name ??
"";
142 this._value = _value ?? 0;
143 this.value_str = value_str ??
"";
144 this.column_name = column_name ??
"";
145 this.options =
options ??
new Dictionary<string, string>();
163 public IDictionary<string, string>
info {
get; set; } =
new Dictionary<string, string>();
string column_name
Name of a column on which the filter by value would be applied.
const string COLLECTION_NAME
Name of a collection which is to contain the newly created view.
long count
The number of records passing the value filter.
string value_str
The string value to search for.
FilterByValueRequest()
Constructs a FilterByValueRequest object with default parameters.
double _value
The value to search for.
A set of results returned by Kinetica.filterByValue(string,string,bool,double,string,string,IDictionary{string, string}).
IDictionary< string, string > options
Optional parameters.
IDictionary< string, string > info
Additional information.
A set of parameters for Kinetica.filterByValue(string,string,bool,double,string,string,IDictionary{string, string}).
bool is_string
Indicates whether the value being searched for is string or numeric.
string table_name
Name of an existing table on which to perform the calculation.
FilterByValueRequest(string table_name, string view_name, bool is_string, double?_value, string value_str, string column_name, IDictionary< string, string > options=null)
Constructs a FilterByValueRequest object with the specified parameters.
string view_name
If provided, then this will be the name of the view containing the results.
KineticaData - class to help with Avro Encoding for Kinetica