mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-05-03 20:27:56 +08:00
Previous requirement
This commit is contained in:
parent
dbac736ffc
commit
3acf49b51c
@ -426,7 +426,14 @@ namespace SqlSugar
|
||||
}
|
||||
else if (IsListSetExp(columnInfo)|| IsSingleSetExp(columnInfo))
|
||||
{
|
||||
return this.ReSetValueBySqlExpList[columnInfo.PropertyName].Sql;
|
||||
if (this.ReSetValueBySqlExpList[columnInfo.PropertyName].Type == ReSetValueBySqlExpListModelType.List)
|
||||
{
|
||||
return columnInfo.DbColumnName+this.ReSetValueBySqlExpList[columnInfo.PropertyName].Sql+name;
|
||||
}
|
||||
else
|
||||
{
|
||||
return this.ReSetValueBySqlExpList[columnInfo.PropertyName].Sql;
|
||||
}
|
||||
}
|
||||
else if (columnInfo.UpdateSql.HasValue())
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user