Kinetica C# API  Version 6.1.0.0
FilterByValue.cs
Go to the documentation of this file.
1 /*
2  * This file was autogenerated by the Kinetica schema processor.
3  *
4  * DO NOT EDIT DIRECTLY.
5  */
6 
7 using System.Collections.Generic;
8 
9 
10 
11 namespace kinetica
12 {
13 
29  {
30 
33  public string table_name { get; set; }
34 
39  public string view_name { get; set; } = "";
40 
43  public bool is_string { get; set; }
44 
46  public double _value { get; set; } = 0;
47 
49  public string value_str { get; set; } = "";
50 
53  public string column_name { get; set; }
54 
56  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
57 
58 
61  public FilterByValueRequest() { }
62 
81  string view_name,
82  bool is_string,
83  double _value,
84  string value_str,
85  string column_name,
86  IDictionary<string, string> options = null)
87  {
88  this.table_name = table_name ?? "";
89  this.view_name = view_name ?? "";
90  this.is_string = is_string;
91  this._value = _value;
92  this.value_str = value_str ?? "";
93  this.column_name = column_name ?? "";
94  this.options = options ?? new Dictionary<string, string>();
95  } // end constructor
96 
97  } // end class FilterByValueRequest
98 
99 
100 
105  {
106 
109  public long count { get; set; }
110 
111  } // end class FilterByValueResponse
112 
113 
114 
115 
116 } // end namespace kinetica
string column_name
Name of a column on which the filter by value would be applied.
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 Kinetica.filterByValue(string,string,bool,double,string,string,IDictionary<string, string>).
IDictionary< string, string > options
Optional parameters.
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.
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
Definition: KineticaData.cs:14