Class BatchGetItemRequest
Represents a request to batch get items from multiple tables.
Inherited Members
Namespace: Innovt.Cloud.Table
Assembly: Innovt.Cloud.dll
Syntax
public class BatchGetItemRequest
Constructors
| Edit this page View SourceBatchGetItemRequest()
Initializes a new instance of the BatchGetItemRequest class.
Declaration
public BatchGetItemRequest()
BatchGetItemRequest(string, BatchGetItem)
Initializes a new instance of the BatchGetItemRequest class with a table name and batch request item.
Declaration
public BatchGetItemRequest(string tableName, BatchGetItem batchRequestItem)
Parameters
Type | Name | Description |
---|---|---|
string | tableName | The name of the table. |
BatchGetItem | batchRequestItem | The batch request item for the specified table. |
Properties
| Edit this page View SourceItems
Gets the items to be retrieved in the batch, keyed by table name.
Declaration
public Dictionary<string, BatchGetItem> Items { get; }
Property Value
Type | Description |
---|---|
Dictionary<string, BatchGetItem> |
Methods
| Edit this page View SourceAddItem(string, BatchGetItem)
Adds a batch request item for a specific table.
Declaration
public void AddItem(string tableName, BatchGetItem batchRequestItem)
Parameters
Type | Name | Description |
---|---|---|
string | tableName | The name of the table. |
BatchGetItem | batchRequestItem | The batch request item for the specified table. |
Exceptions
Type | Condition |
---|---|
ArgumentNullException | Thrown when |