Hi,
I am using ElasticSearch version 7.11. My TermQuery only returns case-sensitive matching results,to avoid that I set case_insensitive as true in DSL term query like below and it returns data as expected.
{
"query": {
"term": {
"title": {
"value": "BIG THEORY",
"case_insensitive": true
}
}
}
}
But when I am trying to implement in code using C# [Nest/ElasticSearch.Net Pkg], could'nt find the option to enable case_insensitive.
Is there any way to set it as true?
Thanks in Advance