I am using nHibernate and trying to implement some paging. If I run this code
IList list = session.CreateQuery("FROM Author").List();
it returns 8 records. If I run this code though
IList list = session.CreateQuery("FROM Author")
.SetFirstResult(1).SetMaxResults(5).List();
it returns 0 records. When I look at the SQL generated I can't see that there is any paging logic.
What is the most likely errors with this?