I got this error when I executed the following code:
var insert = new TableBatchOperation(); foreach (var entity in entities) { insert.Insert(entity); } cloudTable.ExecuteBatch(insert);
If the collection of entities contained 512 elements. Azure SDK via StorageException:
"Unexpected response code for operation : 99"
What does this error mean, and how can I solve it?
exception azure azure-table-storage
seldary
source share