This commit is contained in:
sunkaixuan
2023-12-13 16:18:46 +08:00
parent 793ed513ea
commit ea213bfadc

View File

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