在 Windows Azure 存储中,我们曾经这样做来创建一个表:
var tableClient = account.CreateCloudTableClient();
tableClient.CreateTableIfNotExist(TableName);
我刚刚下载了 azure storage library (v2) 的最新版本,我之前的代码不再工作了:
“Microsoft.WindowsAzure.Storage.Table.CloudTableClient”不包含“CreateTableIfNotExist”的定义,并且找不到接受“Microsoft.WindowsAzure.Storage.Table.CloudTableClient”类型的第一个参数的扩展方法“CreateTableIfNotExist”。
v2 中的好代码是什么?