ExpListBin Method

Create list bin expression.

Definition

Namespace: Aerospike.Client
Assembly: AerospikeClient (in AerospikeClient.dll) Version: 7.0.1
C#
public static Exp ListBin(
	string name
)

Parameters

name  String
 

Return Value

Exp

Example

C#
// Bin a[2] == 3
Exp.EQ(ListExp.GetByIndex(ListReturnType.VALUE, Type.INT, Exp.Val(2), Exp.ListBin("a")), Exp.Val(3))

See Also