Azure SDK を使用して Azure Table Storage にデータを保存および取得する方法に関する例やドキュメントを探しています。
.NET 4.5 フレームワークで C# を使用しています。
https://www.windowsazure.com/en-us/develop/net/how-to-guides/table-services/のドキュメントを見つけました。
一部:
// Create the CloudTable object that represents the "people" table.
CloudTable table = tableClient.GetTableReference("people");
// Create a new customer entity.
CustomerEntity customer1 = new CustomerEntity("Harp", "Walter");
customer1.Email = "Walter@contoso.com";
customer1.PhoneNumber = "425-555-0101";
// Create the TableOperation that inserts the customer entity.
TableOperation insertOperation = TableOperation.Insert(customer1);
// Execute the insert operation.
table.Execute(insertOperation);
はもう利用できません。
.NET 4.5 でこれを行う方法を知っている人はいますか?
よろしくお願いします