TermOr Method (String, String, FuncTerm, Term) |
Combines a Term searching the field 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 field,
string value,
Func<Term, Term> groupSetup
)
member Or :
field : string *
value : string *
groupSetup : Func<Term, Term> -> BinaryTerm
Parameters
- field
- Type: SystemString
The other field to search. - value
- Type: SystemString
The other value to match. - 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