Create "and" operator that applies to a variable number of expressions.
Namespace: Aerospike.ClientAssembly: AerospikeClient (in AerospikeClient.dll) Version: 4.2.6.0 (4.2.6)
Syntax
Parameters
- exps
- Type: Aerospike.Client Exp
Examples
// (a > 5 || a == 0) && b < 3 Exp.And( Exp.Or( Exp.GT(Exp.IntBin("a"), Exp.Val(5)), Exp.EQ(Exp.IntBin("a"), Exp.Val(0))), Exp.LT(Exp.IntBin("b"), Exp.Val(3)))
See Also