Class DbMetaIndex
Represents metadata for a database index.
public class DbMetaIndex : DbMetaObject
- Inheritance
-
DbMetaIndex
- Inherited Members
- Extension Methods
Properties
Columns
Gets or sets the list of column names included in this index.
public string Columns { get; set; }
Property Value
DisplayText
Gets a descriptive, formatted string representation of the index metadata.
public override string DisplayText { get; }
Property Value
IndexType
Gets or sets the storage structure type of the index (e.g., BTREE, HASH).
public string IndexType { get; set; }
Property Value
IsUnique
Gets or sets a value indicating whether the index enforces uniqueness.
public bool IsUnique { get; set; }