Create "greater than" operation.
Namespace: Aerospike.Client
Assembly: AerospikeClient (in AerospikeClient.dll) Version: 5.1.1.0 (5.1.1)
Syntax
C#
public static Exp GT( Exp left, Exp right )
Parameters
- left
- Type: Aerospike.ClientExp
- right
- Type: Aerospike.ClientExp
Return Value
Type: ExpExamples
// a > 8 Exp.GT(Exp.IntBin("a"), Exp.Val(8))
See Also