mirror of
https://github.com/nsnail/FreeSql.git
synced 2025-06-19 04:18:16 +08:00
🚀补充ISelectGrouping的分页模型分页方法
This commit is contained in:
@ -1,4 +1,5 @@
|
||||
using System;
|
||||
using FreeSql.Internal.Model;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq.Expressions;
|
||||
using System.Text;
|
||||
@ -101,6 +102,13 @@ namespace FreeSql
|
||||
/// <returns></returns>
|
||||
ISelectGrouping<TKey, TValue> Page(int pageNumber, int pageSize);
|
||||
|
||||
/// <summary>
|
||||
/// 分页
|
||||
/// </summary>
|
||||
/// <param name="pagingInfo">分页信息</param>
|
||||
/// <returns></returns>
|
||||
ISelectGrouping<TKey, TValue> Page(BasePagingInfo pagingInfo);
|
||||
|
||||
/// <summary>
|
||||
/// 查询的记录数量
|
||||
/// </summary>
|
||||
|
Reference in New Issue
Block a user