ExpGT Method

Create "greater than" operation.

Definition

Namespace: Aerospike.Client
Assembly: AerospikeClient (in AerospikeClient.dll) Version: 7.0.1
C#
public static Exp GT(
	Exp left,
	Exp right
)

Parameters

left  Exp
 
right  Exp
 

Return Value

Exp

Example

C#
// a > 8
Exp.GT(Exp.IntBin("a"), Exp.Val(8))

See Also