Could'nt set case_insensitive option in Nest

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

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.