TermOrBetween Method (String, String, Token, Boolean) |
Combine this Term, using a logical OR, with a new Range Term
searching field for values between from
and to.
Namespace:
RiakClient.Models.Search
Assembly:
RiakClient (in RiakClient.dll) Version: f9bb17a3f8ff6940b88010a52f202e3d55fe25c5
Syntax public BinaryTerm OrBetween(
string field,
string from,
Token to,
bool inclusive = true
)
member OrBetween :
field : string *
from : string *
to : Token *
?inclusive : bool
(* Defaults:
let _inclusive = defaultArg inclusive true
*)
-> BinaryTerm
Parameters
- field
- Type: SystemString
The other field to search. - from
- Type: SystemString
The lower bound of values to search for. - to
- Type: RiakClient.Models.SearchToken
The upper bound of values to search for. - inclusive (Optional)
- Type: SystemBoolean
The option to include the bounds in the range or not.
Return Value
Type:
BinaryTerm
A new
BinaryTerm based on this Term and the provided parameters.
See Also