Kinetica C# API  Version 7.0.19.0
 All Classes Namespaces Files Functions Variables Enumerations Enumerator Properties Pages
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 
45  public struct Options
46  {
47 
52  public const string COLLECTION_NAME = "collection_name";
53  } // end struct Options
54 
55 
58  public string table_name { get; set; }
59 
64  public string view_name { get; set; } = "";
65 
68  public bool is_string { get; set; }
69 
72  public double _value { get; set; } = 0;
73 
76  public string value_str { get; set; } = "";
77 
80  public string column_name { get; set; }
81 
94  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
95 
96 
99  public FilterByValueRequest() { }
100 
132  string view_name,
133  bool is_string,
134  double? _value,
135  string value_str,
136  string column_name,
137  IDictionary<string, string> options = null)
138  {
139  this.table_name = table_name ?? "";
140  this.view_name = view_name ?? "";
141  this.is_string = is_string;
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>();
146  } // end constructor
147 
148  } // end class FilterByValueRequest
149 
150 
151 
156  {
157 
160  public long count { get; set; }
161 
163  public IDictionary<string, string> info { get; set; } = new Dictionary<string, string>();
164 
165  } // end class FilterByValueResponse
166 
167 
168 
169 
170 } // end namespace kinetica
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
Definition: KineticaData.cs:14