完全的azure新手-它是什么?我如何检查我的更改是否已提交

本文关键字:我的 检查 提交 是否 何检查 新手 azure 它是什么 | 更新日期: 2023-09-27 18:28:29

我是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?

谢谢,Andrew

完全的azure新手-它是什么?我如何检查我的更改是否已提交

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

    1b。您可以使用方便的工具(如Azure Storage Explorer CodePlex Link)来查看所有表以及所有行。

  2. MSDN订阅就是你所需要的,这取决于级别(高级、终极等)。它将决定你在所有Azure服务上花费的信用额度;您可以在登录后点击门户网站上的绿色"信用状态"按钮来查看此金额和剩余金额。

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

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

也许它对你有用。