Update sqlite func bug

This commit is contained in:
sunkaixuan 2023-03-17 17:17:38 +08:00
parent 5ae71cb67c
commit 59a859e0e3

View File

@ -16,7 +16,7 @@ namespace SqlSugar
{
public override string GetStringJoinSelector(string result, string separator)
{
return $"group_concat({result},'{separator},') ";
return $"group_concat({result},'{separator}') ";
}
public override string DateDiff(MethodCallExpressionModel model)
{