GetCreateIndexSql() 공개 메소드

public GetCreateIndexSql ( string indexName, string table ) : string
indexName string
table string
리턴 string
예제 #1
0
        public virtual void AddIndex(string indexName, string tableName, params string[] columnNames)
        {
            string sql = Dialect.GetCreateIndexSql(indexName, tableName, columnNames);

            Database.ExecuteSql(sql);
        }