We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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
The text was updated successfully, but these errors were encountered:
Hi @DR9885 ,
the BulkRequestDescriptor already provides this overload:
BulkRequestDescriptor
DeleteMany(IndexName index, IEnumerable<Id> ids)
Under the hood, it does exactly what you currently have as your "workaround" code.
Please let me know, if that solves you issue.
Sorry, something went wrong.
No branches or pull requests
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
Describe alternatives you've considered
Current work around but this does not seem ideal.
Additional context
N/A
The text was updated successfully, but these errors were encountered: