Class BatchWriteItem
Represents a request to batch write items to a database.
Inherited Members
Namespace: Innovt.Cloud.Table
Assembly: Innovt.Cloud.dll
Syntax
public class BatchWriteItem
Properties
| Edit this page View SourceDeleteRequest
Gets or sets a collection of items to be deleted in the batch. The key represents the table name and the value represents the item to delete.
Declaration
public Dictionary<string, object> DeleteRequest { get; set; }
Property Value
Type | Description |
---|---|
Dictionary<string, object> |
PutRequest
Gets or sets a collection of items to be added or updated in the batch. The key represents the table name and the value represents the item to put.
Declaration
public Dictionary<string, object> PutRequest { get; set; }
Property Value
Type | Description |
---|---|
Dictionary<string, object> |