GetAddCommentToTableSql() public abstract méthode

public abstract GetAddCommentToTableSql ( string tableName, string comment ) : string
tableName string
comment string
Résultat string
        public void AddTableComment(string tableName, string comment)
        {
            string sql = Dialect.GetAddCommentToTableSql(tableName, comment);

            Database.ExecuteSql(sql);
        }