GetAddCommentToTableSql() public abstract method

public abstract GetAddCommentToTableSql ( string tableName, string comment ) : string
tableName string
comment string
return string
Esempio n. 1
0
        public void AddTableComment(string tableName, string comment)
        {
            string sql = Dialect.GetAddCommentToTableSql(tableName, comment);

            Database.ExecuteSql(sql);
        }