The following method can be used to batch insert a collection of entities as a single transaction:
CloudTable.ExecuteBatch(TableBatchOperation batch)
If any of the entities fail during insert, then nothing will be inserted from the collection. This is only available when inserting into one partition.
Is it possible to do something like this across multiple partitions?