Synchronization code

This commit is contained in:
sunkaixuan 2023-02-20 20:45:58 +08:00
parent ee488a4f95
commit 48bb29893c

View File

@ -89,7 +89,7 @@ namespace SqlSugar
var selfParameterName = Context.GetTranslationColumnName((argExp as LambdaExpression).Parameters.First().Name) + UtilConstants.Dot; var selfParameterName = Context.GetTranslationColumnName((argExp as LambdaExpression).Parameters.First().Name) + UtilConstants.Dot;
if (this.Context.JoinIndex == 0&&result.Contains(" FROM ")) if (this.Context.JoinIndex == 0&&result.Contains(" FROM "))
{ {
this.Context.CurrentShortName= selfParameterName; this.Context.CurrentShortName= selfParameterName.ObjToString().TrimEnd('.');
} }
else if (this.Context.JoinIndex == 0) else if (this.Context.JoinIndex == 0)
result = result.Replace(selfParameterName, SubTools.GetSubReplace(this.Context)); result = result.Replace(selfParameterName, SubTools.GetSubReplace(this.Context));