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