在我使用TableStorage的Azure项目中,我得到以下异常:
Microsoft JScript中的运行时错误:Sys.WebForms.PageRequestManagerServerErrorException:在所选数据源中找不到名为“TimeStamp”的字段或属性
原始德语信息是:
Microsoft JScript中的Laufzeitfehler:Sys.WebForms.PageRequestManagerServerErrorException:Feld oder Eigenschaft mit dem Namen TimeStamp wurde nicht inderausgewähltenDatenquellegefunden。
如果我尝试访问TableStorage,我总是会得到这个。代码是例如
storageAccount = GlobalStorageAccount.GetGlobalStorageAccount();
storageAccount.CreateCloudTableClient().CreateTableIfNotExist(tableName);
GlobalStorageAccount类:
public class GlobalStorageAccount
{
private static CloudStorageAccount _storageAccount;
public static CloudStorageAccount GetGlobalStorageAccount()
{
if (_storageAccount == null)
{
var acc = new StorageCredentialsAccountAndKey("...", "...");
_storageAccount = new CloudStorageAccount(acc, true);
}
return _storageAccount;
}
}