Title here
Summary here
Checks if an index exists.
public sealed class IfIndexExistsTask : IfExistsTask, ILoggableTask public IfIndexExistsTask() public IfIndexExistsTask(string indexName, string tableName)| Type | Name | Description |
|---|---|---|
| string | indexName | |
| string | tableName |
Ćhecks if the index exists
public static bool IsExisting(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 that you want to check for existence |
| string | tableName | The table name on which the index is based on |
| Type | Description |
|---|---|
| bool | True if the index exists |
Ćhecks if the index exists
public static bool IsExisting(string indexName, string tableName)| Type | Name | Description |
|---|---|---|
| string | indexName | The index name that you want to check for existence |
| string | tableName | The table name on which the index is based on |
| Type | Description |
|---|---|
| bool | True if the index exists |