Interface IDeleteIndexOnColumnSyntax
Specify the column or columns of the index to dlete
Namespace: FluentMigrator.Builders.Delete.Index
Assembly: FluentMigrator.Abstractions.dll
Syntax
public interface IDeleteIndexOnColumnSyntax
Methods
| Edit this page View SourceOnColumn(string)
Specify the column of the index to delete
Declaration
IDeleteIndexOptionsSyntax OnColumn(string columnName)
Parameters
Type | Name | Description |
---|---|---|
string | columnName | The column name |
Returns
Type | Description |
---|---|
IDeleteIndexOptionsSyntax | The next step |
OnColumns(params string[])
Specify the columns of the index to delete
Declaration
IDeleteIndexOptionsSyntax OnColumns(params string[] columnNames)
Parameters
Type | Name | Description |
---|---|---|
string[] | columnNames | The column names |
Returns
Type | Description |
---|---|
IDeleteIndexOptionsSyntax | The next step |
WithOptions()
Specify the options of the index to delete
Declaration
IDeleteIndexOptionsSyntax WithOptions()
Returns
Type | Description |
---|---|
IDeleteIndexOptionsSyntax | The next step |