mirror of
https://github.com/dotnetcore/FreeSql.git
synced 2026-02-06 16:30:52 +08:00
update
9
分页查询.md
9
分页查询.md
@@ -17,10 +17,11 @@ class Topic {
|
||||
## 每页20条数据,查询第1页
|
||||
|
||||
```csharp
|
||||
var sql = fsql.Select<Topic>().Page(1, 20).ToSql();
|
||||
///SELECT a.`Id`, a.`Clicks`, a.`TestTypeInfoGuid`, a.`Title`, a.`CreateTime`
|
||||
//FROM `tb_topic` a
|
||||
//LIMIT 0,20
|
||||
var list = fsql.Select<Topic>()
|
||||
.Where(a => a.Id > 10)
|
||||
.Count(out var total) //总记录数量
|
||||
.Page(1, 20)
|
||||
.Tolist();
|
||||
```
|
||||
|
||||
## 优化
|
||||
|
||||
Reference in New Issue
Block a user