PredExp MapValIterateOr Method Aerospike
Create map predicate where expression matches for any map value.
            // 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")
            

Namespace: Aerospike.Client
Assembly: AerospikeClient (in AerospikeClient.dll) Version: 3.9.12.0 (3.9.12)
Syntax

Parameters

varName
Type: System String
See Also