Provides the serialisation mechanism of a value to a CQL string.
Provides the serialisation mechanism of a value to a CQL string. The vast majority of serializers are fed in via the Primitives mechanism.
Primitive columns will automatically override and define "asCql" based on the serialization of specific primitives. When T is context bounded by a primitive:
def asCql(v: T): String = implicitly[Primitive[T]].asCql(value)
The value of the object to convert to a string.
A string that can be directly appended to a CQL query.