Class TableColumn
Represents a table column information
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Cassandra
Assembly: Cassandra.dll
Syntax
public class TableColumn : CqlColumn
Properties
KeyType
Gets or sets the column key type.
This property is going to be deprecated in future releases, use PartitionKeys, ClusteringKeys and Indexes that provide a more accurate representation of a table or view keys and indexes.
Declaration
public KeyType KeyType { get; set; }
Property Value
Type | Description |
---|---|
KeyType |
SecondaryIndexName
Declaration
[Obsolete("The driver provides a new secondary index metadata API, IndexMetadata, that is returned as part of the TableMetadata.")]
public string SecondaryIndexName { get; set; }
Property Value
Type | Description |
---|---|
string |
SecondaryIndexOptions
Declaration
[Obsolete("The driver provides a new secondary index metadata API, IndexMetadata, that is returned as part of the TableMetadata.")]
public IDictionary<string, string> SecondaryIndexOptions { get; set; }
Property Value
Type | Description |
---|---|
IDictionary<string, string> |
SecondaryIndexType
Declaration
[Obsolete("The driver provides a new secondary index metadata API, IndexMetadata, that is returned as part of the TableMetadata.")]
public string SecondaryIndexType { get; set; }
Property Value
Type | Description |
---|---|
string |