Kinetica C# API
Version 6.0.1.0
|
A set of parameters for /filter/byvalue. More...
Public Member Functions | |
FilterByValueRequest () | |
Constructs a FilterByValueRequest object with default parameters. More... | |
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. 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 an existing table on which to perform the calculation. More... | |
string | view_name [get, set] |
If provided, then this will be the name of the view containing the results. More... | |
bool | is_string = "" [get, set] |
Indicates whether the value being searched for is string or numeric. More... | |
double | _value [get, set] |
The value to search for. More... | |
string | value_str = 0 [get, set] |
The string value to search for. More... | |
string | column_name = "" [get, set] |
Name of a column on which the filter by value would be applied. 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/byvalue.
Calculates which objects from a table has a particular value for a particular column. The input parameters provide a way to specify either a String or a Double valued column and a desired value for the column on which the filter is performed. The operation is synchronous, meaning that a response will not be returned until all the objects are fully available. The response payload provides the count of the resulting set. A new result view which satisfies the input filter restriction specification is also created with a view name passed in as part of the input payload. Although this functionality can also be accomplished with the standard filter function, it is more efficient.
Definition at line 26 of file FilterByValue.cs.
|
inline |
Constructs a FilterByValueRequest object with default parameters.
Definition at line 59 of file FilterByValue.cs.
|
inline |
Constructs a FilterByValueRequest object with the specified parameters.
table_name | Name of an existing table on which to perform the calculation. |
view_name | If provided, then this will be the name of the view containing the results. Has the same naming restrictions as tables. |
is_string | Indicates whether the value being searched for is string or numeric. |
_value | The value to search for. |
value_str | The string value to search for. |
column_name | Name of a column on which the filter by value would be applied. |
options | Optional parameters. |
Definition at line 78 of file FilterByValue.cs.
|
getset |
The value to search for.
Definition at line 44 of file FilterByValue.cs.
|
getset |
Name of a column on which the filter by value would be applied.
Definition at line 51 of file FilterByValue.cs.
|
getset |
Indicates whether the value being searched for is string or numeric.
Definition at line 41 of file FilterByValue.cs.
|
getset |
Optional parameters.
Definition at line 54 of file FilterByValue.cs.
|
getset |
Name of an existing table on which to perform the calculation.
Definition at line 31 of file FilterByValue.cs.
|
getset |
The string value to search for.
Definition at line 47 of file FilterByValue.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 37 of file FilterByValue.cs.