Create "less than" operation.
Namespace: Aerospike.Client
Assembly: AerospikeClient (in AerospikeClient.dll) Version: 5.0.0.0 (5.0.0)
Syntax
C#
public static Exp LT( Exp left, Exp right )
Parameters
- left
- Type: Aerospike.ClientExp
- right
- Type: Aerospike.ClientExp
Return Value
Type: ExpExamples
// a < 1000 Exp.LT(Exp.IntBin("a"), Exp.Val(1000))
See Also