mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-04-24 18:04:52 +08:00
Update .net core project
This commit is contained in:
parent
551f75a197
commit
092506f3bf
@ -275,6 +275,12 @@ namespace SqlSugar
|
||||
#endregion
|
||||
|
||||
#region Methods
|
||||
public override bool IsAnyColumnRemark(string columnName, string tableName)
|
||||
{
|
||||
var isAny=this.Context.DbMaintenance.GetColumnInfosByTableName(tableName, false)
|
||||
.Any(it => it.ColumnDescription.HasValue() && it.DbColumnName.EqualCase(columnName));
|
||||
return isAny;
|
||||
}
|
||||
public override bool AddColumnRemark(string columnName, string tableName, string description)
|
||||
{
|
||||
//base.AddColumnRemark(columnName, tableName, description);
|
||||
|
Loading…
Reference in New Issue
Block a user