0

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 でこれを行う方法を知っている人はいますか?

よろしくお願いします

4

2 に答える 2

1

このコードは正常に動作します。ドキュメントにはバージョン 2.0 と記載されていますが、これは .NET のバージョンではなく、ストレージ SDK のバージョンを指しています。

編集:

GetTableReference メソッドを取得するには、次の手順を実行する必要があります。

  • Microsoft.WindowsAzure.Storage.dll バージョン 2.0.0.0 以降を参照します (NuGet: 経由Install-Package WindowsAzure.Storage) 。
  • 次の名前空間を追加します。

using Microsoft.WindowsAzure.Storage;
using Microsoft.WindowsAzure.Storage.Auth;
using Microsoft.WindowsAzure.Storage.Table;
  • ストレージ アカウントとテーブル クライアントを初期化します。

var account = new CloudStorageAccount(...);
var tableClient = account.CreateCloudTableClient();
于 2012-11-21T21:38:07.650 に答える