ExpBinType Method

Create expression that returns bin's integer particle type. See ParticleType.

Definition

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

Parameters

name  String
 

Return Value

Exp

Example

C#
// Bin "a" particle type is a list
Exp.EQ(Exp.BinType("a"), Exp.Val(ParticleType.LIST))

See Also