Create expression that returns the minimum value in a variable number of expressions.
All arguments must be the same type (integer or float).
Requires server version 5.6.0+.
Namespace: Aerospike.Client
Assembly: AerospikeClient (in AerospikeClient.dll) Version: 5.1.1.0 (5.1.1)
Syntax
C#
public static Exp Min( params Exp[] exps )
Parameters
- exps
- Type: Aerospike.ClientExp
Return Value
Type: ExpExamples
// min(a, b, c) > 0 Exp.GT( Exp.Min(Exp.IntBin("a"), Exp.IntBin("b"), Exp.IntBin("c")), Exp.Val(0));
See Also