Class TableColumn
Represents a table column information
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Dse
Assembly: Dse.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 |
---|---|
System.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 |
---|---|
System.Collections.Generic.IDictionary<System.String, System.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 |
---|---|
System.String |