我是 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?
谢谢,安德鲁