ExpMin Method

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+.

Definition

Namespace: Aerospike.Client
Assembly: AerospikeClient (in AerospikeClient.dll) Version: 7.0.1
C#
public static Exp Min(
	params Exp[] exps
)

Parameters

exps  Exp
 

Return Value

Exp

Example

C#
// min(a, b, c) > 0
Exp.GT(
  Exp.Min(Exp.IntBin("a"), Exp.IntBin("b"), Exp.IntBin("c")),
  Exp.Val(0));

See Also