mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-09-24 13:03:43 +08:00
Synchronization code
This commit is contained in:
@@ -104,9 +104,16 @@ namespace SqlSugar
|
|||||||
return " MOD(" + model.Args[0].MemberName+ " , " + model.Args[1].MemberName+")";
|
return " MOD(" + model.Args[0].MemberName+ " , " + model.Args[1].MemberName+")";
|
||||||
}
|
}
|
||||||
public override string GetStringJoinSelector(string result, string separator)
|
public override string GetStringJoinSelector(string result, string separator)
|
||||||
|
{
|
||||||
|
if (result.Contains(","))
|
||||||
|
{
|
||||||
|
return $"listagg(to_char({result.Split(',').First()}),'{separator}') within group(order by {result.Split(',').Last()}) ";
|
||||||
|
}
|
||||||
|
else
|
||||||
{
|
{
|
||||||
return $"listagg(to_char({result}),'{separator}') within group(order by {result}) ";
|
return $"listagg(to_char({result}),'{separator}') within group(order by {result}) ";
|
||||||
}
|
}
|
||||||
|
}
|
||||||
public override string HasValue(MethodCallExpressionModel model)
|
public override string HasValue(MethodCallExpressionModel model)
|
||||||
{
|
{
|
||||||
var parameter = model.Args[0];
|
var parameter = model.Args[0];
|
||||||
|
Reference in New Issue
Block a user