public async Task WriteBatchAsync(
     IEnumerable <T> records,
     CancellationToken cancellationToken = default)
 {
     var entities = records.Select(r => _entityMapper(r));
     await _table.StoreAsync(entities, cancellationToken);
 }