Exp Max Method Aerospike
Create expression that returns the maximum 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: 4.2.6.0 (4.2.6)
Syntax

Parameters

exps
Type:  Aerospike.Client Exp 
Examples

// max(a, b, c) > 100
Exp.GT(
  Exp.Max(Exp.IntBin("a"), Exp.IntBin("b"), Exp.IntBin("c")),
  Exp.Val(100));
See Also