7 using System.Collections.Generic;
71 public IList<string>
expressions {
get; set; } =
new List<string>();
90 public IDictionary<string, string>
options {
get; set; } =
new Dictionary<string, string>();
129 IDictionary<string, string>
options = null)
131 this.table_name = table_name ??
"";
132 this.expressions = expressions ??
new List<string>();
133 this.options =
options ??
new Dictionary<string, string>();
const string GLOBAL_EXPRESSION
An optional global expression to reduce the search space of the <member name="expressions">.
IDictionary< string, string > options
Optional parameters.
A set of parameters for /delete/records.
long count_deleted
Total number of records deleted across all expressions.
A set of results returned by /delete/records.
DeleteRecordsRequest(string table_name, IList< string > expressions, IDictionary< string, string > options=null)
Constructs a DeleteRecordsRequest object with the specified parameters.
IList< string > expressions
A list of the actual predicates, one for each select; format should follow the guidelines provided /f...
const string RECORD_ID
A record id identifying a single record, obtained at the time of /insert/records or by calling /get/r...
string table_name
Name of the table from which to delete records.
KineticaData - class to help with Avro Encoding for Kinetica
IList< long > counts_deleted
Total number of records deleted per expression.
DeleteRecordsRequest()
Constructs a DeleteRecordsRequest object with default parameters.