mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-04-24 18:04:52 +08:00
Update demo
This commit is contained in:
parent
69fdb55f06
commit
a0c36605a4
@ -191,6 +191,13 @@ namespace OrmTest
|
||||
result.Add(it);
|
||||
|
||||
},10);
|
||||
result = new List<Order>();
|
||||
int count = 0;
|
||||
db.Queryable<Order>().ForEachByPage(it =>
|
||||
{
|
||||
result.Add(it);
|
||||
|
||||
},2,10,ref count,5);
|
||||
var test33= db.Queryable<Order>().ToList();
|
||||
Console.WriteLine("#### Examples End ####");
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user