The NEST client for ES 7 has TermRangeQuery class, which covers the case when the rage query is used with Text and Keyword fields.
However, I can't find the equivalent in the new ES 8.x client. There's a class called RangeQuery, but it seems that it is only there to serve as a base class for DateRangeQuery and NumericRangeQuery.
So, if there's no direct equivalent for TermsRangeQuery in ES 8.x client, what's the right way to work with generic range queries which are used with Text/Keyword fields?
Thanks in advance!