7 using System.Collections.Generic;
44 public double _value {
get; set; } = 0;
54 public IDictionary<string, string>
options {
get; set; } =
new Dictionary<string, string>();
84 IDictionary<string, string>
options = null)
86 this.table_name = table_name ??
"";
87 this.view_name = view_name ??
"";
90 this.value_str = value_str ??
"";
91 this.column_name = column_name ??
"";
92 this.options =
options ??
new Dictionary<string, string>();
string column_name
Name of a column on which the filter by value would be applied.
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.
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.
A set of results returned by /filter/byvalue.
IDictionary< string, string > options
Optional parameters.
A set of parameters for /filter/byvalue.
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.
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