Kinetica C# API  Version 6.0.1.0
 All Classes Namespaces Files Functions Variables Enumerations Enumerator Properties Pages
FilterByRange.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 string column_name { get; set; }
44 
46  public double lower_bound { get; set; }
47 
49  public double upper_bound { get; set; }
50 
52  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
53 
54 
57  public FilterByRangeRequest() { }
58 
78  string view_name,
79  string column_name,
80  double lower_bound,
81  double upper_bound,
82  IDictionary<string, string> options = null)
83  {
84  this.table_name = table_name ?? "";
85  this.view_name = view_name ?? "";
86  this.column_name = column_name ?? "";
87  this.lower_bound = lower_bound;
88  this.upper_bound = upper_bound;
89  this.options = options ?? new Dictionary<string, string>();
90  } // end constructor
91 
92  } // end class FilterByRangeRequest
93 
94 
95 
98  {
99 
102  public long count { get; set; }
103 
104  } // end class FilterByRangeResponse
105 
106 
107 
108 
109 } // end namespace kinetica
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.
long count
The number of records passing the range filter.
double lower_bound
Value of the lower bound (inclusive).
A set of parameters for /filter/byrange.
A set of results returned by /filter/byrange.
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
Definition: KineticaData.cs:14
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.
FilterByRangeRequest()
Constructs a FilterByRangeRequest object with default parameters.
double upper_bound
Value of the upper bound (inclusive).