Index

Models a table index.

Namespace:
KpokEntityTool.Models
Type:
Class
Public:
Yes
Protected:
No
Sealed:
No
Abstract:
No
Inherits from:
System.Object
Implements:
System.IEquatable{KpokEntityTool.Models.Index}, System.ComponentModel.INotifyPropertyChanged

Constructors

Index

Default constructor

Signature:
public Void Index()

Events

Type Name Summary
PropertyChangedEventHandler PropertyChanged Notify that a property was changed.

Properties

Columns

A collection of the index columns.

Signature:
public IndexColumnCollection Columns { get; set; }

Description

A description of the index.

Signature:
public String Description { get; set; }

FileGroup

The file group or table space where the index is stored.

Signature:
public String FileGroup { get; set; }

IsUnique

Whether the index is a UNIQUE index.

Signature:
public Boolean IsUnique { get; set; }

Name

Index name.

Signature:
public String Name { get; set; }

Type

Type of the index.

Signature:
public IndexType Type { get; set; }

Methods

Equals

Checks whether other is equals to this object.

Signature:
public Boolean Equals(other)
Returns

true if the objects are equals.

Parameters
Name Type Summary
other Index Object to compare.

Equals

Checks whether obj is equals to this object.

Signature:
public Boolean Equals(obj)
Returns

true if the objects are equals.

Parameters
Name Type Summary
obj Object Object to compare.

GetHashCode

Not required, implemented to avoid warnings.

Signature:
public Int32 GetHashCode()

ToString

Returns a textual representation of the index.

Signature:
public String ToString()