Create expression that returns list size.
Namespace: Aerospike.Client
Assembly: AerospikeClient (in AerospikeClient.dll) Version: 5.1.1.0 (5.1.1)
Syntax
C#
public static Exp Size( Exp bin, params CTX[] ctx )
Parameters
- bin
- Type: Aerospike.ClientExp
- ctx
- Type: Aerospike.ClientCTX
Return Value
Type: ExpExamples
// List bin "a" size > 7 Exp.GT(ListExp.Size(Exp.ListBin("a")), Exp.Val(7))
See Also