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