mirror of
https://github.com/nsnail/FreeSql.git
synced 2025-06-19 20:38:16 +08:00
## v0.3.24
- 增加 GroupBy 分页方法; - 修复 Insert 参数化命名 bug,当存在 Id Id2 时发生; - 优化 Insert/Delete/Update 对象执行完后清理数据,以备多次使用;
This commit is contained in:
@ -665,6 +665,8 @@ namespace FreeSql.Tests.MySql {
|
||||
.Having(a => a.Count() < 300 || a.Avg(a.Key.mod4) < 100)
|
||||
.OrderBy(a => a.Key.tt2)
|
||||
.OrderByDescending(a => a.Count())
|
||||
.Offset(10)
|
||||
.Limit(2)
|
||||
.ToList(a => new {
|
||||
a.Key.tt2,
|
||||
cou1 = a.Count(),
|
||||
|
Reference in New Issue
Block a user