Title here
Summary here
Drops an index. Use DropIfExists to drop an index only if it exists.
public sealed class DropIndexTask : DropTask<IfIndexExistsTask>, ILoggableTask public DropIndexTask() public DropIndexTask(string indexName, string tableName)| Type | Name | Description |
|---|---|---|
| string | indexName | |
| string | tableName |
The formatted table name on which the index is based on.
public ObjectNameDescriptor TN { get; }| Type | Description |
|---|---|
| ObjectNameDescriptor |
The table name on which the index is based on.
public string TableName { get; }| Type | Description |
|---|---|
| string |
Drops an index.
public static void Drop(IConnectionManager connectionManager, string indexName, string tableName)| Type | Name | Description |
|---|---|---|
| IConnectionManager | connectionManager | The connection manager of the database you want to connect |
| string | indexName | The index name to drop. |
| string | tableName | The table name the index is based on. |
Drops an index.
public static void Drop(string indexName, string tableName)| Type | Name | Description |
|---|---|---|
| string | indexName | The index name to drop. |
| string | tableName | The table name the index is based on. |
Drops an index if the index exists.
public static void DropIfExists(IConnectionManager connectionManager, string indexName, string tableName)| Type | Name | Description |
|---|---|---|
| IConnectionManager | connectionManager | The connection manager of the database you want to connect |
| string | indexName | The index name to drop. |
| string | tableName | The table name the index is based on. |
Drops an index if the index exists.
public static void DropIfExists(string indexName, string tableName)| Type | Name | Description |
|---|---|---|
| string | indexName | The index name to drop. |
| string | tableName | The table name the index is based on. |