How to send more than 100 brokered messages to Azure Service Bus within a Transaction?
I know that TransactionScope
does
the trick but is limited to 100 messages. And I know that if I send the messages as a Batch operation, the total size of the message is limited which causes the batches to be splited in different batches and the transaction is not guaranteed. And I think that
the issue with the 100 messages remains even with batch send.
Does anyone found a solution?