PartitionBy 一个小Bug 返回
C#论坛
老数据
1
1263
天空之城 发布于2020/8/11
悬赏:5 飞吻
db.Queryable<Student>().PartitionBy(it => new { it.Id, it.Name }).ToList();
这样返回的也是一条数据?但是如果我我这样写
db.Queryable<Student>().PartitionBy(it => new { it.Id, it.Name })ake(5).ToList();
就返回前5条数据了。
那么请问怎么才可以返回所有的数据了?
热忱回答(1)
-
fate stay night VIP02020/8/13
现在默认是取一条 INT.MAX
0 回复