7 using System.Collections.Generic;
 
   79         public IDictionary<string, IList<string>> 
column_values_map { 
get; set; } = 
new Dictionary<string, IList<string>>();
 
   91         public IDictionary<string, string> 
options { 
get; set; } = 
new Dictionary<string, string>();
 
  125                                     IDictionary<string, string> 
options = null)
 
  127             this.table_name = table_name ?? 
"";
 
  128             this.view_name = view_name ?? 
"";
 
  129             this.column_values_map = 
column_values_map ?? 
new Dictionary<string, IList<string>>();
 
  130             this.options = 
options ?? 
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 /filter/bylist. 
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. 
FilterByListRequest()
Constructs a FilterByListRequest object with default parameters. 
KineticaData - class to help with Avro Encoding for Kinetica 
A set of results returned by /filter/bylist.