Create expression that returns bin's integer particle type.
See ParticleType.
Namespace: Aerospike.Client
Assembly: AerospikeClient (in AerospikeClient.dll) Version: 5.1.1.0 (5.1.1)
Syntax
C#
public static Exp BinType( string name )
Parameters
- name
- Type: SystemString
Return Value
Type: ExpExamples
// Bin "a" particle type is a list Exp.EQ(Exp.BinType("a"), Exp.Val(ParticleType.LIST))
See Also