Synchronization code

This commit is contained in:
sunkaixuan 2023-12-13 17:00:27 +08:00
parent 5484a0844e
commit df28f6a1fe

View File

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