Interface ICreateIndexOptionsSyntax
Index options
Namespace: FluentMigrator.Builders.Create.Index
Assembly: FluentMigrator.Abstractions.dll
Syntax
public interface ICreateIndexOptionsSyntax
Methods
| Edit this page View SourceClustered()
Defines the index as clustered
Declaration
ICreateIndexOnColumnSyntax Clustered()
Returns
Type | Description |
---|---|
ICreateIndexOnColumnSyntax | Defines the column for the index |
NonClustered()
Defines the index as non-clustered
Declaration
ICreateIndexOnColumnSyntax NonClustered()
Returns
Type | Description |
---|---|
ICreateIndexOnColumnSyntax | Defines the column for the index |
Unique()
Defines the index as unique
Declaration
ICreateIndexOnColumnSyntax Unique()
Returns
Type | Description |
---|---|
ICreateIndexOnColumnSyntax | Defines the column for the index |