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