Table of Contents

Class IndexColumn

Namespace
CMS.DataEngine
Assembly
CMS.DataEngine.dll

Class representing database index column.

public class IndexColumn
Inheritance
object
IndexColumn
Extension Methods

Constructors

IndexColumn(string, bool, bool)

Initializes a new index column.

public IndexColumn(string name, bool isDescendingKey, bool isIncluded)

Parameters

name string
isDescendingKey bool
isIncluded bool

Properties

IsDescendingKey

Indicates whether index key column has a descending sort direction.

public bool IsDescendingKey { get; }

Property Value

bool

IsIncluded

Indicates whether column is a nonkey column of the index.

public bool IsIncluded { get; }

Property Value

bool

Name

Index column name.

public string Name { get; }

Property Value

string