mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-05-17 21:49:33 +08:00
Update .net core project
This commit is contained in:
parent
551f75a197
commit
092506f3bf
@ -275,6 +275,12 @@ namespace SqlSugar
|
|||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
#region Methods
|
#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)
|
public override bool AddColumnRemark(string columnName, string tableName, string description)
|
||||||
{
|
{
|
||||||
//base.AddColumnRemark(columnName, tableName, description);
|
//base.AddColumnRemark(columnName, tableName, description);
|
||||||
|
Loading…
Reference in New Issue
Block a user