Create list predicate where expression matches for all list items.
Example:
// Find records where all list elements v != "goodbye" in list bin x. PredExp.StringVar("v") PredExp.StringValue("goodbye") PredExp.StringUnequal() PredExp.ListBin("x") PredExp.ListIterateAnd("v")
Namespace: Aerospike.Client
Assembly: AerospikeClient (in AerospikeClient.dll) Version: 3.9.16.1 (3.9.16.1)
Syntax
C#
public static PredExp ListIterateAnd( string varName )
Parameters
- varName
- Type: SystemString
Return Value
Type: PredExpSee Also