ListExp.GetByValueRange Method
Create expression that selects list items identified by value range and returns selected data
specified by returnType.
Namespace: Aerospike.ClientAssembly: AerospikeClient (in AerospikeClient.dll) Version: 8.0.1+e35566e493546c0887ebb841c8e2a2c6a7cbde18
public static Exp GetByValueRange(
ListReturnType returnType,
Exp valueBegin,
Exp valueEnd,
Exp bin,
params CTX[] ctx
)
- returnType ListReturnType
- metadata attributes to return. See ListReturnType
- valueBegin Exp
- begin expression inclusive. If null, range is less than valueEnd.
- valueEnd Exp
- end expression exclusive. If null, range is greater than equal to valueBegin.
- bin Exp
- bin or list value expression
- ctx CTX[]
- optional context path for nested CDT
Exp
ListExp.GetByValueRange(ListReturnType.VALUE, Exp.Val(10), Exp.Val(20), Exp.ListBin("a"))