DeltaSet
Contains a collection or rows to insert, update or delete to a database, file or service.
Properties
| Name | Type | Description |
|---|---|---|
| Inserts | List<DeltaRow> | New rows to insert to the target. |
| Updates | List<DeltaRow> | Changed rows to update in the target. |
| Deletes | List<DeltaRow> | Rows to delete from the target. |
DeltaRow
Represents a row in a DeltaSet.
Properties
| Name | Type | Description |
|---|---|---|
| Cells | List<DeltaCell> | The cells in a row. |
Methods
| Name | Description |
|---|---|
| GetKeyValue(string columnName) | Returns the value the key column with the specified name. |
| GetValue(string columnName) | Returns the value of the column with the specified name. |
DeltaCell
Represents a cell in a DeltaRow.
Properties
| Name | Type | Description |
|---|---|---|
| ColumnName | string | The name of the column represented by the cell. |
| Value | object | The value of the cell. |
| IsUpdateOrDelteKey | bool | Specifies whether or not the cell represents a column to match on when performing an update or delete. |