Class BatchGetItem
Represents a request to batch get items from a database.
Inherited Members
Namespace: Innovt.Cloud.Table
Assembly: Innovt.Cloud.dll
Syntax
public class BatchGetItem
Properties
| Edit this page View SourceConsistentRead
Gets or sets a value indicating whether a consistent read is requested.
Declaration
public bool ConsistentRead { get; set; }
Property Value
Type | Description |
---|---|
bool |
ExpressionAttributeNames
Gets or sets the expression attribute names used in the request.
Declaration
public Dictionary<string, string> ExpressionAttributeNames { get; set; }
Property Value
Type | Description |
---|---|
Dictionary<string, string> |
Keys
Gets or sets the keys for which items will be retrieved in the batch. Each key is represented as a dictionary of attribute names and values.
Declaration
public List<Dictionary<string, object>> Keys { get; set; }
Property Value
Type | Description |
---|---|
List<Dictionary<string, object>> |
ProjectionExpression
Gets or sets the projection expression for retrieving specific attributes.
Declaration
public string ProjectionExpression { get; set; }
Property Value
Type | Description |
---|---|
string |