Open stevejgordon opened 1 year ago
This is broken out from #6556.
Add support for combining queries created using the fluent syntax into bool queries using the &&, ||, ! and + operators.
For example:
var search = new SearchRequestDescriptor<Project>() .Query(q => q .Term(p => p.Name, "x") || q .Term(p => p.Name, "y"));
should produce:
{ "query": { "bool": { "must": [ { "term": { "name": { "value": "x" } } }, { "term": { "name": { "value": "y" } } } ] } } }
I'm missing this as well, basically every operator on this page.
Any update on this? This is preventing migration from ES 7.17 / Nest client. Is there a rough timeline on when to expect this in the client? Thanks!
This is broken out from #6556.
Add support for combining queries created using the fluent syntax into bool queries using the &&, ||, ! and + operators.
For example:
should produce: