GetDropIndexSql() 공개 메소드

public GetDropIndexSql ( string indexName, string table ) : string
indexName string
table string
리턴 string
예제 #1
0
        public virtual void RemoveIndex(string indexName, string table)
        {
            string sql = Dialect.GetDropIndexSql(indexName, table);

            Database.ExecuteSql(sql);
        }