ExpEQ Method

Create "equals" expression.

Definition

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

Parameters

left  Exp
 
right  Exp
 

Return Value

Exp

Example

C#
// a == 11
Exp.EQ(Exp.IntBin("a"), Exp.Val(11))

See Also