Mysql创建表时,增加字段注释。

This commit is contained in:
zhouyx 2022-10-16 15:06:50 +08:00
parent 42e736b874
commit 807aec33a8
2 changed files with 6 additions and 1 deletions

View File

@ -11,8 +11,9 @@ namespace OrmTest
{
[SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
public int Id { get; set; }
[SugarColumn(ColumnDescription ="名称")]
public string Name { get; set; }
[SugarColumn(ColumnDescription = "价格")]
public decimal Price { get; set; }
[SugarColumn(IsNullable = true)]
public DateTime CreateTime { get; set; }

View File

@ -392,6 +392,10 @@ namespace SqlSugar
string primaryKey = null;
string identity = item.IsIdentity ? this.CreateTableIdentity : null;
string addItem = string.Format(this.CreateTableColumn, this.SqlBuilder.GetTranslationColumnName(columnName), dataType, dataSize, nullType, primaryKey, identity);
if (!string.IsNullOrEmpty(item.ColumnDescription))
{
addItem += "COMMENT '"+item.ColumnDescription+"' ";
}
columnArray.Add(addItem);
}
string tableString = string.Format(this.CreateTableSql, this.SqlBuilder.GetTranslationTableName(tableName), string.Join(",\r\n", columnArray));