TermOr Method (String, FuncTerm, Term) |
Combines a Term searching this field for the value string, using a logical OR,
with another Term generated by the groupSetup Func.
Namespace:
RiakClient.Models.Search
Assembly:
RiakClient (in RiakClient.dll) Version: f9bb17a3f8ff6940b88010a52f202e3d55fe25c5
Syntax public BinaryTerm Or(
string value,
Func<Term, Term> groupSetup
)
member Or :
value : string *
groupSetup : Func<Term, Term> -> BinaryTerm
Parameters
- value
- Type: SystemString
The value to match using the current field. - groupSetup
- Type: SystemFuncTerm, Term
A FuncT, TResult that accepts a Term for fluent configuration,
and returns a configured Term.
Return Value
Type:
BinaryTerm
A new
BinaryTerm based on the two created
Terms.
See Also