Exp.Add Method
Create "add" (+) operator that applies to a variable number of expressions.
Return sum of all arguments. All arguments must resolve to the same type (integer or float).
Requires server version 5.6.0+.
Namespace: Aerospike.ClientAssembly: AerospikeClient (in AerospikeClient.dll) Version: 8.0.1+e35566e493546c0887ebb841c8e2a2c6a7cbde18
public static Exp Add(
params Exp[] exps
)
- exps Exp[]
-
Exp
Exp.EQ(
Exp.Add(Exp.IntBin("a"), Exp.IntBin("b"), Exp.IntBin("c")),
Exp.Val(10));