Browse Source

Support Json.net JValue

pull/31/head
sunkaixuan 2 years ago
parent
commit
7ca2434e05
  1. 4
      Src/Asp.Net/SqlSugar/ExpressionsToSql/Common/SugarParameter.cs

4
Src/Asp.Net/SqlSugar/ExpressionsToSql/Common/SugarParameter.cs

@ -172,6 +172,10 @@ namespace SqlSugar
this.DbType = System.Data.DbType.Date; this.DbType = System.Data.DbType.Date;
this.Value = UtilMethods.DateOnlyToDateTime(this.Value); this.Value = UtilMethods.DateOnlyToDateTime(this.Value);
} }
else if (type?.FullName == "Newtonsoft.Json.Linq.JObject" || type?.FullName == "Newtonsoft.Json.Linq.JArray" || type?.FullName == "Newtonsoft.Json.Linq.JValue")
{
this.Value =this.Value==null?default(string):this.Value.ObjToString() ;
}
} }
public SugarParameter(string name, object value, bool isOutput) public SugarParameter(string name, object value, bool isOutput)

Loading…
Cancel
Save