This commit is contained in:
sunkaixuan
2023-12-13 16:04:11 +08:00
parent 2e1f4d0496
commit 8420fffc0f

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