What is NHibernate HQL's Equivalent to T-SQL's TOP Keyword?

Also what is the non-HQL way for saying give me the first 15 of a class?

link|improve this question

71% accept rate
feedback

2 Answers

up vote 24 down vote accepted

It's actually pretty easy in HQL:

var top15 = session.CreateQuery("from SomeEntity")
                .SetFirstResult(0)
                .SetMaxResults(15)
                .List<SomeEntity>();

Don't know how to do this using the criteria API though.

link|improve this answer
+1. Huh that's pretty weird. I thought the answer would be part of the HQL "tunneled" string. Interesting. – brun Feb 16 '09 at 23:50
3  
This answer is actually a hybrid of HQL and the criteria API – Ben Laan Jun 28 '09 at 4:59
yea..it's essentially the same as criteria...just replace with CreateCriteria<SomeEntity>() – dotjoe Mar 4 '10 at 1:19
1  
any idea how to order the results before selecting the top 15? – kmehta Apr 6 '10 at 15:03
sure - session.CreateQuery("from SomeEntity s order by s.SomeProperty").SetFirst(....) – mookid8000 Mar 18 '11 at 19:03
feedback

Criteria API Method:

ICriteria criteria = DaoSession.CreateCriteria(typeof(T));
criteria.SetFirstResult(StartIndex);
criteria.SetMaxResults(MaximumObjects);
return criteria.List<T>();
link|improve this answer
+1. I'll have to look into this MaximumObjects. Pretty cool. – brun Feb 17 '09 at 0:09
1  
MaximumObjects is just an integer variable to tell SetMaxResults how many objects to return. In your case, you could hard code 15 instead, i.e. criteria.SetMaxResults(15); – Brendan Whelan Feb 17 '09 at 1:13
Haha... so in other words it is identical to CreateQuery() after the instance is created. – Andrew Burns Feb 19 '09 at 15:47
You can chain all of those ICriteria method calls fluently, would make it more readable. – UpTheCreek Apr 19 '11 at 8:36
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.