7 using System.Collections.Generic;
130 public IDictionary<string, IList<string>>
column_values_map {
get; set; } =
new Dictionary<string, IList<string>>();
167 public IDictionary<string, string>
options {
get; set; } =
new Dictionary<string, string>();
228 IDictionary<string, string>
options = null)
230 this.table_name = table_name ??
"";
231 this.view_name = view_name ??
"";
232 this.column_values_map =
column_values_map ??
new Dictionary<string, IList<string>>();
233 this.options =
options ??
new Dictionary<string, string>();
250 public IDictionary<string, string>
info {
get; set; } =
new Dictionary<string, string>();
const string IN_LIST
The filter will match all items that are in the provided list(s).
const string FILTER_MODE
String indicating the filter mode, either 'in_list' or 'not_in_list'.
const string NOT_IN_LIST
The filter will match all items that are not in the provided list(s).
IDictionary< string, IList< string > > column_values_map
List of values for the corresponding column in the table
string table_name
Name of the table to filter.
string view_name
If provided, then this will be the name of the view containing the results.
A set of parameters for Kinetica.filterByList(string,string,IDictionary{string, IList{string}},IDictionary{string, string}).
IDictionary< string, string > options
Optional parameters.
long count
The number of records passing the list filter.
FilterByListRequest(string table_name, string view_name, IDictionary< string, IList< string >> column_values_map, IDictionary< string, string > options=null)
Constructs a FilterByListRequest object with the specified parameters.
const string COLLECTION_NAME
Name of a collection which is to contain the newly created view.
IDictionary< string, string > info
Additional information.
FilterByListRequest()
Constructs a FilterByListRequest object with default parameters.
KineticaData - class to help with Avro Encoding for Kinetica
A set of results returned by Kinetica.filterByList(string,string,IDictionary{string, IList{string}},IDictionary{string, string}).