相关疑难解决方法(0)

Azure表存储错误:"操作的意外响应代码:99"

执行以下代码时出现此错误:

var insert = new TableBatchOperation();
foreach (var entity in entities)
{
    insert.Insert(entity);
}
cloudTable.ExecuteBatch(insert);  
Run Code Online (Sandbox Code Playgroud)

实体集合包含512个元素.Azure SDK通过StorageException:

"Unexpected response code for operation : 99" 
Run Code Online (Sandbox Code Playgroud)

这个错误意味着什么,我该如何解决?

exception azure azure-table-storage

7
推荐指数
1
解决办法
5533
查看次数

标签 统计

azure ×1

azure-table-storage ×1

exception ×1