mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-05-04 12:47:57 +08:00
Synchronization code
This commit is contained in:
parent
65d61fdc39
commit
950e7fb63f
@ -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; }
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user