如何将数据写入azure存储表

发布于 2024-10-03 05:13:42 字数 401 浏览 2 评论 0原文

我有需要写入天蓝色存储表的数据。 有人可以向我指出博客或 msdn 文章,我可以在其中引用示例代码吗? 帮助我继续完成第四行代码。

        string tableName = "myTable";
        CloudStorageAccount cloudStorageAccount = CloudStorageAccount.FromConfigurationSetting("ConnectionString");
        CloudTableClient cloudTableClient = cloudStorageAccount.CreateCloudTableClient();
        cloudTableClient.CreateTableIfNotExist(tableName);

I have data which needs to be written to azure storage tables.
Can someone point me to a blog or msdn article where I can refer the sample code?
Help me proceed beyond the 4th line of code.

        string tableName = "myTable";
        CloudStorageAccount cloudStorageAccount = CloudStorageAccount.FromConfigurationSetting("ConnectionString");
        CloudTableClient cloudTableClient = cloudStorageAccount.CreateCloudTableClient();
        cloudTableClient.CreateTableIfNotExist(tableName);

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

讽刺将军 2024-10-10 05:13:42

查看 Azure 平台培训套件。特别是,请查看名为 ExploringWindowsAzureStorageVS2010 的实验室。该实验将引导您完成创建表实体、创建表上下文以及插入表存储的代码,包括使用 AddObject() 和 SaveChanges() 将实体写入表。

Take a look at the Azure Platform Training Kit. In particular, look at the lab called ExploringWindowsAzureStorageVS2010. That lab will walk you through creating a table entity, creating a table context, and code to insert into table storage, including the use of AddObject() and SaveChanges() to write your entities to a table.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文