与DLL Azure存储DLL混淆

时间:2013-08-03 11:14:05

标签: azure azure-storage

我正在尝试在Storage中创建表,但问题是当我使用类CloudStorageAccount时,这个类在Microsoft.WindowsAzure中都可用; 使用Microsoft.WindowsAzure.Storage;我不确定DLL之间是否有任何冲突,我机器上同时存在V1.7和V2.0。

我已经使用了代码

Microsoft.WindowsAzure.Storage.CloudStorageAccount storageAccount = Microsoft.WindowsAzure.Storage.CloudStorageAccount.Parse(CloudConfigurationManager.GetSetting("StorageConn"));

Microsoft.WindowsAzure.Storage.Table.CloudTableClient tableClient = storageAccount.CreateCloudTableClient();

string tableName = "People";
// che = tableClient.CreateTableIfNotExist(tableName);
Microsoft.WindowsAzure.Storage.Table.CloudTable table = tableClient.GetTableReference(tableName);
table.CreateIfNotExists();

但服务器返回错误400我不知道我哪里出错了

0 个答案:

没有答案