Kinetica C# API
Version 6.0.1.0
|
A set of parameters for /filter/byrange. More...
Public Member Functions | |
FilterByRangeRequest () | |
Constructs a FilterByRangeRequest object with default parameters. More... | |
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. More... | |
![]() | |
KineticaData (KineticaType type) | |
Constructor from Kinetica Type More... | |
KineticaData (System.Type type=null) | |
Default constructor, with optional System.Type More... | |
object | Get (int fieldPos) |
Retrieve a specific property from this object More... | |
void | Put (int fieldPos, object fieldValue) |
Write a specific property to this object More... | |
Properties | |
string | table_name [get, set] |
Name of the table on which the filter by range operation will be performed. More... | |
string | view_name [get, set] |
If provided, then this will be the name of the view containing the results. More... | |
string | column_name = "" [get, set] |
Name of a column on which the operation would be applied. More... | |
double | lower_bound [get, set] |
Value of the lower bound (inclusive). More... | |
double | upper_bound [get, set] |
Value of the upper bound (inclusive). More... | |
IDictionary< string, string > | options [get, set] |
Optional parameters. More... | |
![]() | |
Schema | Schema [get] |
Avro Schema for this class More... | |
Additional Inherited Members | |
![]() | |
static RecordSchema | SchemaFromType (System.Type t, KineticaType ktype=null) |
Create an Avro Schema from a System.Type and a KineticaType. More... | |
A set of parameters for /filter/byrange.
Calculates which objects from a table have a column that is within the given bounds. An object from the table identified by <member name="table_name"> is added to the view <member name="view_name"> if its column is within [<member name="lower_bound">, <member name="upper_bound">] (inclusive). The operation is synchronous. The response provides a count of the number of objects which passed the bound filter. Although this functionality can also be accomplished with the standard filter function, it is more efficient.
For track objects, the count reflects how many points fall within the given bounds (which may not include all the track points of any given track).
Definition at line 28 of file FilterByRange.cs.
|
inline |
Constructs a FilterByRangeRequest object with default parameters.
Definition at line 57 of file FilterByRange.cs.
|
inline |
Constructs a FilterByRangeRequest object with the specified parameters.
table_name | Name of the table on which the filter by range operation will be performed. Must be an existing table. |
view_name | If provided, then this will be the name of the view containing the results. Has the same naming restrictions as tables. |
column_name | Name of a column on which the operation would be applied. |
lower_bound | Value of the lower bound (inclusive). |
upper_bound | Value of the upper bound (inclusive). |
options | Optional parameters. |
Definition at line 77 of file FilterByRange.cs.
|
getset |
Name of a column on which the operation would be applied.
Definition at line 43 of file FilterByRange.cs.
|
getset |
Value of the lower bound (inclusive).
Definition at line 46 of file FilterByRange.cs.
|
getset |
Optional parameters.
Definition at line 52 of file FilterByRange.cs.
|
getset |
Name of the table on which the filter by range operation will be performed.
Must be an existing table.
Definition at line 33 of file FilterByRange.cs.
|
getset |
Value of the upper bound (inclusive).
Definition at line 49 of file FilterByRange.cs.
|
getset |
If provided, then this will be the name of the view containing the results.
Has the same naming restrictions as tables.
Definition at line 39 of file FilterByRange.cs.