Constructor TermRangeQuery
TermRangeQuery(String, BytesRef, BytesRef, Boolean, Boolean)
Constructs a query selecting all terms greater/equal than lowerTerm
but less/equal than upperTerm
.
If an endpoint is null
, it is said
to be "open". Either or both endpoints may be open. Open endpoints may not
be exclusive (you can't select all but the first or last term without
explicitly specifying the term to exclude.)
Declaration
public TermRangeQuery(string field, BytesRef lowerTerm, BytesRef upperTerm, bool includeLower, bool includeUpper)
Parameters
Type | Name | Description |
---|---|---|
System.String | field | The field that holds both lower and upper terms. |
BytesRef | lowerTerm | The term text at the lower end of the range. |
BytesRef | upperTerm | The term text at the upper end of the range. |
System.Boolean | includeLower | If true, the |
System.Boolean | includeUpper | If true, the |