ListExp GetByValueRange Method Aerospike
Create expression that selects list items identified by value range and returns selected data specified by returnType.

Namespace: Aerospike.Client
Assembly: AerospikeClient (in AerospikeClient.dll) Version: 4.2.7.0 (4.2.7)
Syntax

Parameters

returnType
Type: Aerospike.Client ListReturnType
metadata attributes to return. See ListReturnType
valueBegin
Type: Aerospike.Client Exp
begin expression inclusive. If null, range is less than valueEnd.
valueEnd
Type: Aerospike.Client Exp
end expression exclusive. If null, range is greater than equal to valueBegin.
bin
Type: Aerospike.Client Exp
bin or list value expression
ctx
Type:  Aerospike.Client CTX 
optional context path for nested CDT
Examples

// List bin "a" items >= 10 && items < 20
ListExp.GetByValueRange(ListReturnType.VALUE, Exp.Val(10), Exp.Val(20), Exp.ListBin("a"))
See Also