예제 #1
0
 public virtual void Run(StringBuilder builder, IDropIndexCommand command)
 {
     builder.AppendFormat("drop index {0} ON {1}",
                          _dialect.QuoteForColumnName(command.IndexName),
                          _dialect.QuoteForTableName(command.Name));
 }
예제 #2
0
 public virtual void Run(StringBuilder builder, IDropIndexCommand command)
 {
     builder.Append(_dialect.GetDropIndexString(command.IndexName, command.Name));
 }