Ejemplo n.º 1
0
 public static async Task BatchDeleteAsync(this CloudTable table, IEnumerable <ITableEntity> items)
 => await table.BatchExecuteAsync(items, (batch, item) => batch.Delete(item));
Ejemplo n.º 2
0
 public static async Task BatchDeleteAsync(this CloudTable table, params ITableEntity[] items)
 => await table.BatchExecuteAsync(items, (batch, item) => batch.Delete(item));
Ejemplo n.º 3
0
 public static async Task BatchInsertOrReplaceAsync(this CloudTable table, params ITableEntity[] items)
 => await table.BatchExecuteAsync(items, (batch, item) => batch.InsertOrReplace(item));