PartitionBy async page bug

This commit is contained in:
sunkaixuna
2021-04-24 22:16:26 +08:00
parent a4330a0399
commit c495df43eb
2 changed files with 4 additions and 0 deletions

View File

@@ -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 ####");
}