Create "or" operator that applies to a variable number of expressions.
Namespace: Aerospike.ClientAssembly: AerospikeClient (in AerospikeClient.dll) Version: 4.1.1.0 (4.1.1)
Syntax
Parameters
- exps
- Type: Aerospike.Client Exp
Examples
// a == 0 || b == 0 Exp.Or( Exp.EQ(Exp.IntBin("a"), Exp.Val(0)), Exp.EQ(Exp.IntBin("b"), Exp.Val(0)));
See Also