Create expression that selects list items identified by value and returns selected
data specified by returnType.
Namespace: Aerospike.ClientAssembly: AerospikeClient (in AerospikeClient.dll) Version: 4.1.1.0 (4.1.1)
Syntax
Parameters
- returnType
- Type: Aerospike.Client ListReturnType
metadata attributes to return. See ListReturnType
- value
- Type: Aerospike.Client Exp
search expression
- bin
- Type: Aerospike.Client Exp
list bin or list value expression
- ctx
- Type: Aerospike.Client CTX
optional context path for nested CDT
Examples
// List bin "a" contains at least one item == "abc" Exp.GT( ListExp.GetByValue(ListReturnType.COUNT, Exp.Val("abc"), Exp.ListBin("a")), Exp.Val(0))
See Also