Click or drag to resize
ColumnMap Methods

The ColumnMap type exposes the following members.

Methods
  NameDescription
Public methodAsCounter
Tells the mapper that this is a counter column
Public methodAsFrozen
Tells the mapper that the column type is frozen. Only valid for collections, tuples, and user-defined types. For example: frozen<address>
Public methodAsStatic
Tells the mapper that this is a static column
Public methodIgnore
Tells the mapper to ignore this property/field when mapping.
Public methodWithDbType(Type)
Tells the mapper to convert the data in the property or field to the Type specified when doing an INSERT or UPDATE (i.e. the column type in Cassandra). (NOTE: This does NOT affect the Type when fetching/SELECTing data from the database.)
Public methodWithDbTypeT
Tells the mapper to convert the data in the property or field to Type T when doing an INSERT or UPDATE (i.e. the column type in Cassandra). (NOTE: This does NOT affect the Type when fetching/SELECTing data from the database.)
Public methodWithFrozenKey
Tells the mapper that the key of the column type is frozen. Only valid for maps and sets, for example: map<frozen<tuple<text, text>>, uuid> .
Public methodWithFrozenValue
Tells the mapper that the value of the column type is frozen. Only valid for maps and lists, for example: map<uuid, frozen<tuple<text, text>>> .
Public methodWithName
Tells the mapper to use the column name specified when mapping the property/field.
Public methodWithSecondaryIndex
Tells the mapper that this column is defined also as a secondary index
Top
See Also