Create map predicate where expression matches for any map value.
Namespace: Aerospike.Client
// Find records where any map value v > 100 in map bin m.
PredExp.IntegerVar("v")
PredExp.IntegerValue(100)
PredExp.IntegerGreater()
PredExp.MapBin("m")
PredExp.MapValIterateOr("v")
Assembly: AerospikeClient (in AerospikeClient.dll) Version: 3.4.0.0 (3.4.5)
Syntax
Parameters
- varName
- Type:
System String
See Also