码迷,mamicode.com
首页 > 系统相关 > 详细

Nhibernate 分页

时间:2014-09-22 01:21:01      阅读:314      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   io   os   ar   for   div   

bubuko.com,布布扣
public IList<Student> GetStudentByPage(int pageSize, int pageIndex, string SName)
        {
            ISession session = NHibernateHelper.GetCurrentSession();
            ITransaction trans = session.BeginTransaction();
            //HQL查询
            IList<Student> studentList = new List<Student>();
            //string sql = "from Student";
            //studentList = session.CreateQuery(sql)
            //    .SetFirstResult((pageIndex - 1) * pageSize)
            //    .SetMaxResults(pageSize)
            //    .List<Student>();

            //SQL查询

            //studentList = session.CreateSQLQuery("SELECT * FROM Student")
            //    .SetFirstResult((pageIndex - 1) * pageSize)
            //    .SetMaxResults(pageSize)
            //    .SetResultTransformer(Transformers.AliasToBean<Student>()).List<Student>();
            return studentList;
        }
View Code

 

Nhibernate 分页

标签:style   blog   http   color   io   os   ar   for   div   

原文地址:http://www.cnblogs.com/caishuhua226/p/3985215.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!