ListExpSize Method

Create expression that returns list size.

Definition

Namespace: Aerospike.Client
Assembly: AerospikeClient (in AerospikeClient.dll) Version: 7.0.1
C#
public static Exp Size(
	Exp bin,
	params CTX[] ctx
)

Parameters

bin  Exp
 
ctx  CTX
 

Return Value

Exp

Example

C#
// List bin "a" size > 7
Exp.GT(ListExp.Size(Exp.ListBin("a")), Exp.Val(7))

See Also