Optimized code

This commit is contained in:
sunkaixuan 2024-03-14 19:26:33 +08:00
parent 310ed5c124
commit 6e337b3ae4
2 changed files with 16 additions and 4 deletions

View File

@ -381,6 +381,21 @@ namespace SqlSugar
return column.PropertyInfo.GetValue(item, null);
}
}
private string GetSetSql(string value, Expression<Func<T, T>> columns)
{
if (value.Contains("= \"SYSDATE\""))
{
value = value.Replace("= \"SYSDATE\"", "= SYSDATE");
}
var shortName=(columns as LambdaExpression).Parameters.First().Name;
var replaceKey=this.SqlBuilder.GetTranslationColumnName(shortName)+".";
var newKey = this.SqlBuilder.GetTranslationColumnName(this.EntityInfo.DbTableName) + ".";
if (replaceKey != newKey)
{
value = value.Replace(replaceKey,"");
}
return value;
}
private void PreToSql()
{

View File

@ -749,10 +749,7 @@ namespace SqlSugar
string key = key = keys[i].Key;
i++;
var value = item;
if (value.Contains("= \"SYSDATE\""))
{
value = value.Replace("= \"SYSDATE\"", "= SYSDATE");
}
value = GetSetSql(value, columns);
UpdateBuilder.SetValues.Add(new KeyValuePair<string, string>(SqlBuilder.GetTranslationColumnName(key), value));
}
}