修复pgsql选择驼峰规则建表添加remark注释时报错

This commit is contained in:
JunFeng Wu 2022-11-24 16:02:26 +08:00
parent f81434b5fa
commit 127b97f378

View File

@ -256,7 +256,7 @@ namespace SqlSugar
public override bool AddColumnRemark(string columnName, string tableName, string description) public override bool AddColumnRemark(string columnName, string tableName, string description)
{ {
tableName = this.SqlBuilder.GetTranslationTableName(tableName); tableName = this.SqlBuilder.GetTranslationTableName(tableName);
string sql = string.Format(this.AddColumnRemarkSql, columnName, tableName, description); string sql = string.Format(this.AddColumnRemarkSql, this.SqlBuilder.GetTranslationColumnName(columnName.ToLower(isAutoToLowerCodeFirst)), tableName, description);
this.Context.Ado.ExecuteCommand(sql); this.Context.Ado.ExecuteCommand(sql);
return true; return true;
} }