0

我是 Azure 的新手,我对它的理解是:它是一个在线数据库。

我继承了以下代码:

CloudStorageAccount storageAccount = CloudStorageAccount.Parse(
                CloudConfigurationManager.GetSetting("StorageConnectionString"));

CloudTableClient tableClient = storageAccount.CreateCloudTableClient();

table = tableClient.GetTableReference(
        Convert.ToString(System.Configuration.ConfigurationManager.AppSettings["AzureTable"]));

table.CreateIfNotExists();

现在我很困惑的是:

1. Where do I log in to see if the table is created (if the value for AzureTable is not created?)
2. I have a MSDN subscription, is this all I need to connect to/use Azure?

谢谢,安德鲁

4

2 回答 2

1
  1. table.CreateIfNotExists如果表创建成功,则返回一个布尔值。MSDN 链接

    1b。您可以使用 Azure Storage Explorer CodePlex Link等便捷工具来查看所有表以及所有行。

  2. 您只需要 MSDN 订阅,取决于级别(高级、终极等)将决定您必须在所有 Azure 服务上花费多少信用;登录后,您可以通过单击门户网站上的绿色“信用状态”按钮查看此金额和剩余金额。

默认情况下,MSDN 帐户有消费限额,所以不用担心,它不会从您的卡中扣款,只会暂停您的服务,直到下一个计费周期。最近实施了一项更改,如果您关闭某些服务,它们不会产生任何运行成本并为您节省一些 MSDN 积分。

于 2013-08-21T23:09:35.263 回答
1

我喜欢AzureXplorer来查看存储(blob、表、队列)的内容。

也许它对你有用。

于 2013-08-22T16:06:52.250 回答