Exp Expr Method Aerospike
Merge precompiled expression into a new expression tree. Useful for storing common precompiled expressions and then reusing these expressions as part of a greater expression.

Namespace: Aerospike.Client
Assembly: AerospikeClient (in AerospikeClient.dll) Version: 4.2.5.0 (4.2.5)
Syntax

Examples

Expression e = Exp.Build(Exp.EQ(Exp.IntBin("a"), Exp.Val(200)));
Expression merged = Exp.Build(Exp.And(Exp.Expr(e), Exp.EQ(Exp.IntBin("b"), Exp.Val(100))));
See Also