As of today, the ExecuteBatchAsLimitedBatches extension method wraps the SubmitTransactionAsync method call. The extension automatically chunks all batch operations into chunk of 100 items. This intentional because Azure Table Storage does not support batch transaction with more than 100 items.
Remove this in the future, if and when Azure Table Storage supports a working transaction scheme.
As of today, the
ExecuteBatchAsLimitedBatchesextension method wraps theSubmitTransactionAsyncmethod call. The extension automatically chunks all batch operations into chunk of 100 items. This intentional because Azure Table Storage does not support batch transaction with more than 100 items.Remove this in the future, if and when Azure Table Storage supports a working transaction scheme.