7 using System.Collections.Generic;
76 public const string SEARCH =
"search";
79 public const string EQUALS =
"equals";
94 public const string REGEX =
"regex";
141 public const string CASE_SENSITIVE =
"case_sensitive";
142 public const string TRUE =
"true";
143 public const string FALSE =
"false";
201 public string mode {
get;
set; }
230 public IDictionary<string, string>
options {
get;
set; } =
new Dictionary<string, string>();
321 IDictionary<string, string>
options = null)
323 this.table_name = table_name ??
"";
324 this.view_name = view_name ??
"";
325 this.expression = expression ??
"";
326 this.mode = mode ??
"";
327 this.column_names = column_names ??
new List<string>();
328 this.
options = options ??
new Dictionary<string, string>();
343 public long count {
get;
set; }
const string EQUALS
Exact whole-string match (accelerated).
string view_name
If provided, then this will be the name of the view containing the results.
string table_name
Name of the table on which the filter operation will be performed.
string expression
The expression with which to filter the table.
FilterByStringRequest()
Constructs a FilterByStringRequest object with default parameters.
const string STARTS_WITH
Strings that start with the given expression (not accelerated).
const string REGEX
Full regular expression search (not accelerated).
A set of results returned by Kinetica.filterByString(string,string,string,string,IList<string>,IDictionary<string, string>).
IDictionary< string, string > options
Optional parameters.
IList< string > column_names
List of columns on which to apply the filter.
FilterByStringRequest(string table_name, string view_name, string expression, string mode, IList< string > column_names, IDictionary< string, string > options=null)
Constructs a FilterByStringRequest object with the specified parameters.
A set of parameters for Kinetica.filterByString(string,string,string,string,IList<string>,IDictionary<string, string>).
The string filtering mode to apply.
const string SEARCH
Full text search query with wildcards and boolean operators.
KineticaData - class to help with Avro Encoding for Kinetica
const string CONTAINS
Partial substring match (not accelerated).
string mode
The string filtering mode to apply.