| 
    Kinetica C# API
    Version 7.1.10.0
    
   | 
 
A set of parameters for Kinetica.deleteRecords(string,IList{string},IDictionary{string, string}). More...
 Inheritance diagram for kinetica.DeleteRecordsRequest:
 Collaboration diagram for kinetica.DeleteRecordsRequest:Classes | |
| struct | Options | 
| Optional parameters.  More... | |
Public Member Functions | |
| DeleteRecordsRequest () | |
| Constructs a DeleteRecordsRequest object with default parameters.  More... | |
| DeleteRecordsRequest (string table_name, IList< string > expressions, IDictionary< string, string > options=null) | |
| Constructs a DeleteRecordsRequest object with the specified parameters.  More... | |
  Public Member Functions inherited from kinetica.KineticaData | |
| 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 the table from which to delete records, in [schema_name.  More... | |
| IList< string > | expressions [get, set] | 
| A list of the actual predicates, one for each select; format should follow the guidelines provided here.  More... | |
| IDictionary< string, string > | options = new List<string>() [get, set] | 
| Optional parameters.  More... | |
  Properties inherited from kinetica.KineticaData | |
| Schema | Schema [get] | 
| Avro Schema for this class  More... | |
Additional Inherited Members | |
  Static Public Member Functions inherited from kinetica.KineticaData | |
| 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 Kinetica.deleteRecords(string,IList{string},IDictionary{string, string}).
 Deletes record(s) matching the provided criteria from the given table. The record selection criteria can either be one or more expressions (matching multiple records), a single record identified by record_id options, or all records when using delete_all_records. Note that the three selection criteria are mutually exclusive. This operation cannot be run on a view. The operation is synchronous meaning that a response will not be available until the request is completely processed and all the matching records are deleted.
Definition at line 27 of file DeleteRecords.cs.
      
  | 
  inline | 
Constructs a DeleteRecordsRequest object with default parameters.
Definition at line 178 of file DeleteRecords.cs.
      
  | 
  inline | 
Constructs a DeleteRecordsRequest object with the specified parameters.
| table_name | Name of the table from which to delete records, in [schema_name.]table_name format, using standard name resolution rules. Must contain the name of an existing table; not applicable to views. | 
| expressions | A list of the actual predicates, one for each select; format should follow the guidelines provided here. Specifying one or more is mutually exclusive to specifying record_id in the . | 
| options | Optional parameters. 
  | 
Definition at line 238 of file DeleteRecords.cs.
      
  | 
  getset | 
A list of the actual predicates, one for each select; format should follow the guidelines provided here.
Specifying one or more is mutually exclusive to specifying record_id in the .
Definition at line 129 of file DeleteRecords.cs.
      
  | 
  getset | 
Optional parameters.
The default value is an empty Dictionary.
Definition at line 173 of file DeleteRecords.cs.
      
  | 
  getset | 
Name of the table from which to delete records, in [schema_name.
]table_name format, using standard name resolution rules. Must contain the name of an existing table; not applicable to views.
Definition at line 120 of file DeleteRecords.cs.