Exemple #1
0
        public void DropIndex(string indexName)
        {
            if (_dialect.PrefixIndex)
            {
                indexName = _tablePrefix + indexName;
            }

            var command = new DropIndexCommand(Name, _dialect.FormatIndexName(indexName));

            TableCommands.Add(command);
        }
Exemple #2
0
        public void DropIndex(string indexName)
        {
            var command = new DropIndexCommand(Name, indexName);

            TableCommands.Add(command);
        }