mirror of
https://github.com/nsnail/FreeSql.git
synced 2025-06-19 04:18:16 +08:00
- 增加 Firebird string.Join + ToList 表达式解析,实现与 MySql group_concat 相同的效果 #443;
This commit is contained in:
@ -358,6 +358,11 @@ namespace FreeSql
|
||||
expContext.Result = $"listagg(to_char({expContext.ParsedContent["column"]}),{expContext.ParsedContent["delimiter"]}) within group({orderby})";
|
||||
return null;
|
||||
}
|
||||
public static string StringJoinFirebirdList(object column, object delimiter)
|
||||
{
|
||||
expContext.Result = $"list({expContext.ParsedContent["column"]},{expContext.ParsedContent["delimiter"]})";
|
||||
return null;
|
||||
}
|
||||
#endregion
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user