ExpGT Method

Aerospike
Create "greater than" operation.

Namespace:  Aerospike.Client
Assembly:  AerospikeClient (in AerospikeClient.dll) Version: 5.0.0.0 (5.0.0)
Syntax

C#
public static Exp GT(
	Exp left,
	Exp right
)

Parameters

left
Type: Aerospike.ClientExp
right
Type: Aerospike.ClientExp

Return Value

Type: Exp
Examples

// a > 8
Exp.GT(Exp.IntBin("a"), Exp.Val(8))
See Also

Reference