Create record key expression of specified type.
Namespace: Aerospike.Client
Assembly: AerospikeClient (in AerospikeClient.dll) Version: 5.1.1.0 (5.1.1)
Syntax
C#
public static Exp Key( ExpType type )
Parameters
- type
- Type: Aerospike.ClientExpType
Return Value
Type: ExpExamples
// Integer record key >= 100000 Exp.GE(Exp.Key(Type.INT), Exp.Val(100000))
See Also