Synchronization code

This commit is contained in:
sunkaixuan 2023-12-13 16:09:05 +08:00
parent 8420fffc0f
commit e65f51cd9e

View File

@ -173,7 +173,7 @@ namespace SqlSugar
&& columnInfo?.PropertyName != null
&& !columnInfo.PropertyName.IsRegexWNoContainsChinese())
{
appendValue = Context.SqlParameterKeyWord + appendValue.GetHashCode();
appendValue = "p"+Context.SqlParameterKeyWord + appendValue.GetHashCode() +"no"+ Context.ParameterIndex;
this.Context.Parameters.Add(new SugarParameter(appendValue, value));
}
else