mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-09-22 20:13:41 +08:00
Synchronization code
This commit is contained in:
@@ -269,6 +269,7 @@ namespace SqlSugar
|
|||||||
.Where(it => it is SugarColumn)
|
.Where(it => it is SugarColumn)
|
||||||
.Select(it => (SugarColumn)it)
|
.Select(it => (SugarColumn)it)
|
||||||
.FirstOrDefault();
|
.FirstOrDefault();
|
||||||
|
column.ExtendedAttribute = sugarColumn.ExtendedAttribute;
|
||||||
column.DbTableName = result.DbTableName;
|
column.DbTableName = result.DbTableName;
|
||||||
column.EntityName = result.EntityName;
|
column.EntityName = result.EntityName;
|
||||||
column.PropertyName = property.Name;
|
column.PropertyName = property.Name;
|
||||||
|
@@ -45,5 +45,6 @@ namespace SqlSugar
|
|||||||
public bool InsertServerTime { get; set; }
|
public bool InsertServerTime { get; set; }
|
||||||
public bool UpdateServerTime { get; set; }
|
public bool UpdateServerTime { get; set; }
|
||||||
public string UpdateSql { get; set; }
|
public string UpdateSql { get; set; }
|
||||||
|
public object ExtendedAttribute { get; set; }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@@ -211,6 +211,7 @@ namespace SqlSugar
|
|||||||
public string InsertSql { get; set; }
|
public string InsertSql { get; set; }
|
||||||
public bool UpdateServerTime { get; set; }
|
public bool UpdateServerTime { get; set; }
|
||||||
public string UpdateSql { get; set; }
|
public string UpdateSql { get; set; }
|
||||||
|
public object ExtendedAttribute{ get; set; }
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user