Create "less than or equal" operation.
Namespace: Aerospike.Client
Assembly: AerospikeClient (in AerospikeClient.dll) Version: 5.3.2.0 (5.3.2)
Syntax
C#
public static Exp LE( Exp left, Exp right )
Parameters
- left
- Type: Aerospike.ClientExp
- right
- Type: Aerospike.ClientExp
Return Value
Type: ExpExamples
// a <= 1 Exp.LE(Exp.IntBin("a"), Exp.Val(1))
See Also