Update mysql

This commit is contained in:
sunkaixuan 2023-06-19 13:54:54 +08:00
parent f566294d39
commit 9d9d5b7ee9

View File

@ -143,6 +143,10 @@ namespace SqlSugar
sqlParameter.Value = UtilMethods.GetMinDate(this.Context.CurrentConnectionConfig);
}
}
if (parameter.IsJson == false&& sqlParameter.Value!=null&& sqlParameter.Value is JArray)
{
sqlParameter.Value = sqlParameter.Value.ToString();
}
++index;
}
return result;