 | DALSysUserQueryPagination 方法 |
Sweet 开发框架
获得 SysUser 分页数据列表对象
命名空间:
Sweet.Authority.DAL
程序集:
Sweet.Authority.SQLite (在 Sweet.Authority.SQLite.dll 中) 版本:3.10.1.0 (3.10.1.0)
Sweet.Authority.SQLServer (在 Sweet.Authority.SQLServer.dll 中) 版本:3.10.1.0 (3.10.1.0)
语法public IList<SysUser> QueryPagination(
int currentPage,
int pageSize,
out int recordCount,
SysUser model = null,
string deptId = null
)
Public Function QueryPagination (
currentPage As Integer,
pageSize As Integer,
<OutAttribute> ByRef recordCount As Integer,
Optional model As SysUser = Nothing,
Optional deptId As String = Nothing
) As IList(Of SysUser)
member QueryPagination :
currentPage : int *
pageSize : int *
recordCount : int byref *
?model : SysUser *
?deptId : string
(* Defaults:
let _model = defaultArg model null
let _deptId = defaultArg deptId null
*)
-> IList<SysUser>
参数
- currentPage
- 类型:SystemInt32
当前页码 - pageSize
- 类型:SystemInt32
每页记录数 - recordCount
- 类型:SystemInt32
记录总数 - model (Optional)
- 类型:Sweet.Authority.ModelSysUser
搜索条件:SysUser - deptId (Optional)
- 类型:SystemString
部门Id
返回值
类型:
IListSysUser[缺少 "M:Sweet.Authority.DAL.DALSysUser.QueryPagination(System.Int32,System.Int32,System.Int32@,Sweet.Authority.Model.SysUser,System.String)" 的 <returns> 文档]
参见