This commit is contained in:
sunkaixuan
2023-03-03 19:47:57 +08:00
parent 69abec9b95
commit e221e58280

View File

@@ -1,5 +1,4 @@
using Newtonsoft.Json.Linq;
using System;
using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.Linq;
@@ -88,7 +87,7 @@ namespace SqlSugar
private string GetJson(object memberName1, object memberName2, bool isLast)
{
return $"JSON_VALUE({memberName1}, '$.'+" + memberName2 + ")";
return $"JSON_VALUE({memberName1}, '$.'+"+memberName2+")";
}
public override string JsonListObjectAny(MethodCallExpressionModel model)
@@ -106,4 +105,5 @@ namespace SqlSugar
);
}
}
}