Tutorial by Examples

var client = new AmazonDynamoDBClient(); // Store item client.PutItem(new PutItemRequest { TableName = "Books", Item = new Dictionary<string, AttributeValue> { { "Title", new AttributeValue { S = "Cryptonomicon" } }, { "...
var client = new AmazonDynamoDBClient(); Table booksTable = Table.LoadTable(client, "Books"); // Store item Document book = new Document(); book["Title"] = "Cryptonomicon"; book["Id"] = 42; book["Authors"] = new List<string> { "Ne...
This example consists of two parts: first, we must define our Book type; second, we use it with DynamoDBContext. [DynamoDBTable("Books")] class Book { [DynamoDBHashKey] public int Id { get; set; } public string Title { get; set; } public List<string> Authors { ...

Page 1 of 1