Class Index
- Namespace
- CMS.DataEngine
- Assembly
- CMS.DataEngine.dll
Class representing database index.
public class Index
- Inheritance
-
objectIndex
- Extension Methods
Constructors
Index(string, int, bool, bool, IReadOnlyList<IndexColumn>)
Initializes a new index.
public Index(string name, int type, bool isUnique, bool isPrimaryKey, IReadOnlyList<IndexColumn> columns)
Parameters
name
stringtype
intisUnique
boolisPrimaryKey
boolcolumns
IReadOnlyList<IndexColumn>
Properties
Columns
Read-only list of columns which are part of this index.
public IReadOnlyList<IndexColumn> Columns { get; }
Property Value
- IReadOnlyList<IndexColumn>
IsPrimaryKey
Indicates whether index is part of a primary key constraint.
public bool IsPrimaryKey { get; }
Property Value
- bool
IsUnique
Indicates whether index is unique.
public bool IsUnique { get; }
Property Value
- bool
Name
Index name.
public string Name { get; }
Property Value
- string
Type
Index type as defined in https://msdn.microsoft.com/en-us/library/ms173760.aspx
public int Type { get; }
Property Value
- int