Class InsertUpdateDeleteArgs
Arguments for Insert and Update operations.
Inherited Members
Namespace: Quantellia.WMServer.Asset.DataSource
Assembly: WMServer.dll
Syntax
public class InsertUpdateDeleteArgs
Properties
Data
The data to modify. For an Insert operation, this must have every column of the table.
Declaration
public Dictionary<string, object> Data { get; set; }
Property Value
Type | Description |
---|---|
Dictionary<string, object> |
Selector
The logic to select what should be modified. This must be supplied when performing Delete and Update operations. This is a generic nullable object, and is expected to be converted to strict typing with Convert(object)
Declaration
public object? Selector { get; set; }
Property Value
Type | Description |
---|---|
object |
TableName
The table to perform the modification on.
Declaration
public string TableName { get; set; }
Property Value
Type | Description |
---|---|
string |
TransactionID
Optional TransactionID for insertions on transactions that are ongoing.
Declaration
public string? TransactionID { get; set; }
Property Value
Type | Description |
---|---|
string |