mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-09-24 13:03:43 +08:00
PartitionBy async page bug
This commit is contained in:
@@ -102,6 +102,9 @@ namespace OrmTest
|
||||
|
||||
var test08 = db.Queryable<Order>()
|
||||
.ToPivotJson(it => it.Id, it => it.Name, it => it.Sum(x => x.Price));
|
||||
|
||||
var test09 = db.Queryable<Order>().PartitionBy(it=>it.Id).ToPageListAsync(1,2,0);
|
||||
test09.Wait();
|
||||
Console.WriteLine("#### Examples End ####");
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user