Kinetica C# API  Version 6.1.0.0
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 
31  {
32 
35  public string table_name { get; set; }
36 
41  public string view_name { get; set; } = "";
42 
45  public string column_name { get; set; }
46 
48  public double lower_bound { get; set; }
49 
51  public double upper_bound { get; set; }
52 
54  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
55 
56 
59  public FilterByRangeRequest() { }
60 
80  string view_name,
81  string column_name,
82  double lower_bound,
83  double upper_bound,
84  IDictionary<string, string> options = null)
85  {
86  this.table_name = table_name ?? "";
87  this.view_name = view_name ?? "";
88  this.column_name = column_name ?? "";
89  this.lower_bound = lower_bound;
90  this.upper_bound = upper_bound;
91  this.options = options ?? new Dictionary<string, string>();
92  } // end constructor
93 
94  } // end class FilterByRangeRequest
95 
96 
97 
102  {
103 
106  public long count { get; set; }
107 
108  } // end class FilterByRangeResponse
109 
110 
111 
112 
113 } // 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.
double lower_bound
Value of the lower bound (inclusive).
A set of parameters for Kinetica.filterByRange(string,string,string,double,double,IDictionary<string, string>).
A set of results returned by Kinetica.filterByRange(string,string,string,double,double,IDictionary<string, string>).
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).