Windows Azure存储表无法连接,但blob可以

时间:2013-08-18 10:05:31

标签: azure storage

我无法连接表,但连接blob没问题。

这是我的代码:

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

        audioBlob = storageAccount.CreateCloudBlobClient().GetContainerReference("mycontainer");
        bool y = audioBlob.Exists();

        CloudTableClient tableClient = storageAccount.CreateCloudTableClient();
        submitInfoTable = tableClient.GetTableReference("people");
        bool x = submitInfoTable.Exists();

我调试它,ytrue。 但当它运行到bool x = submitInfoTable.Exists();时,我等待很长时间并且没有回应。

任何人都知道如何解决它?请帮帮我!

1 个答案:

答案 0 :(得分:3)

您的代码看起来不错。如果您要连接到存储模拟器,是否可以确保表服务在模拟器中运行?

enter image description here