gpt4 book ai didi

c# - 用于带有 .NET 4.5 的 TableStorage 的 Azure SDK

转载 作者:行者123 更新时间:2023-12-03 06:04:41 24 4
gpt4 key购买 nike

我正在寻找一些有关如何使用 Azure SDK 在 Azure 表存储中存储和检索数据的示例或文档。

我使用 C# 和 .NET 4.5 框架。

我找到了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 = "<a href="https://stackoverflow.com/cdn-cgi/l/email-protection" class="__cf_email__" data-cfemail="84d3e5e8f0e1f6c4e7ebeaf0ebf7ebaae7ebe9" rel="noreferrer noopener nofollow">[email protected]</a>";
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 做到这一点吗?

最诚挚的问候

最佳答案

这段代码工作正常。虽然文档提到版本 2.0,但这指的是存储 SDK 的版本,而不是 .NET 的版本。

编辑:

为了获取 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();

关于c# - 用于带有 .NET 4.5 的 TableStorage 的 Azure SDK,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13502157/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com