Closed as not planned
Description
Is your feature request related to a problem? Please describe.
Currently no easy way to delete a list of Ids.
Describe the solution you'd like
var res = await _client.BulkAsync(
b =>
b.Index(_dbName)
.DeleteMany(ids), ct).ConfigureAwait(false);
Describe alternatives you've considered
Current work around but this does not seem ideal.
var res = await _client.BulkAsync(
b =>
{
b.Index(_dbName);
foreach (var id in ids)
b.Delete<TE>(x => x.Id(id));
}, ct).ConfigureAwait(false);
Additional context
N/A