PredExpMapValIterateAnd Method

Aerospike
Create map predicate where expression matches for all map values. Example:
            // 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")
            

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

C#
public static PredExp MapValIterateAnd(
	string varName
)

Parameters

varName
Type: SystemString

Return Value

Type: PredExp
See Also

Reference