mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-09-24 21:13:46 +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 ####");
|
||||
}
|
||||
|
||||
|
@@ -2276,6 +2276,7 @@ namespace SqlSugar
|
||||
asyncQueryableBuilder.LambdaExpressions.ParameterIndex = this.QueryBuilder.LambdaExpressions.ParameterIndex;
|
||||
asyncQueryableBuilder.IgnoreColumns = this.QueryBuilder.IgnoreColumns;
|
||||
asyncQueryableBuilder.AsTables = this.QueryBuilder.AsTables;
|
||||
asyncQueryableBuilder.DisableTop = this.QueryBuilder.DisableTop;
|
||||
}
|
||||
protected int SetCacheTime(int cacheDurationInSeconds)
|
||||
{
|
||||
|
Reference in New Issue
Block a user