ExpLE Method

Create "less than or equal" operation.

Definition

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

Parameters

left  Exp
 
right  Exp
 

Return Value

Exp

Example

C#
// a <= 1
Exp.LE(Exp.IntBin("a"), Exp.Val(1))

See Also