我正在尝试在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我不知道我哪里出错了