Getting multiple items using the AWS SDK for .Net

Let's understand how to get multiple items from the DynamoDB table using the AWS SDK for .Net.

Getting ready

To perform this operation, you can use the IDE of your choice.

How to do it…

Let's try to understand how to get multiple stored items from the DynamoDB table using .Net:

  1. Create an instance of the AmazonDynamoDBClient class:
    AmazonDynamoDBClient client = new AmazonDynamoDBClient();
    string tableName = "productTable";
  2. Create BatchGetItemRequest specifying the items to be fetched. You can also fetch multiple items together from various tables:
    var request = new BatchGetItemRequest { RequestItems = new Dictionary<string, KeysAndAttributes>() { { tableName, new KeysAndAttributes { Keys = new List<Dictionary<string, ...

Get DynamoDB Cookbook now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.