-
StackOverflow 文件
-
amazon-dynamodb 教程
-
將 AWS DynamoDb 與 AWS .NET SDK 配合使用
-
文件模型示例
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> { "Neal Stephenson" };
book["Price"] = 12.95;
booksTable.PutItem(book);
// Get item
book = booksTable.GetItem(42);
Console.WriteLine("Id = {0}", book["Id"]);
Console.WriteLine("Title = {0}", book["Title"]);
Console.WriteLine("Authors = {0}",
string.Join(", ", book["Authors"].AsListOfString()));