mirror of
https://github.com/nsnail/FreeSql.git
synced 2025-06-19 04:18:16 +08:00
- 修复 WhereDynamicFilter 在 System.Text.Json 下的问题 #371;
This commit is contained in:
@ -175,6 +175,12 @@ namespace FreeSql.Tests
|
||||
|
||||
.Page(1, 10).ToSql("Id");
|
||||
|
||||
var sqlextMax1 = g.mysql.Select<EdiItem>()
|
||||
.GroupBy(a => a.Id)
|
||||
.ToSql(a => new
|
||||
{
|
||||
Id = a.Key, EdiId = SqlExt.Max(a.Key).Over().ToValue()
|
||||
});
|
||||
|
||||
var sqlextGroupConcat = g.mysql.Select<Edi, EdiItem>()
|
||||
.InnerJoin((a, b) => b.Id == a.Id)
|
||||
|
Reference in New Issue
Block a user