public void DropIndex(string indexName) { if (_dialect.PrefixIndex) { indexName = _tablePrefix + indexName; } var command = new DropIndexCommand(Name, _dialect.FormatIndexName(indexName)); TableCommands.Add(command); }
public void DropIndex(string indexName) { var command = new DropIndexCommand(Name, indexName); TableCommands.Add(command); }