Table of Contents

Class Index

Namespace
CMS.DataEngine
Assembly
CMS.DataEngine.dll

Class representing database index.

public class Index
Inheritance
object
Index
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 string
type int
isUnique bool
isPrimaryKey bool
columns 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

public int Type { get; }

Property Value

int