Interface ISqlIndex
Represents an SQL index constraint.
public interface ISqlIndex : ISqlConstraint, ISqlObject
- Inherited Members
Properties
Columns
Collection of columns that define this index.
IReadOnlyList<SqlIndexed<ISqlColumn>> Columns { get; }
Property Value
IsPartial
Specifies whether or not this index is partial.
bool IsPartial { get; }
Property Value
IsUnique
Specifies whether or not this index is unique.
bool IsUnique { get; }
Property Value
IsVirtual
Specifies whether or not this index is virtual.
bool IsVirtual { get; }
Property Value
Remarks
Virtual indexes aren't actually created in the database.