vote up 2 vote down star
2

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?

flag

68% accept rate

2 Answers

vote up 9 vote down check

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|flag
+1. Huh that's pretty weird. I thought the answer would be part of the HQL "tunneled" string. Interesting. – B. Tyndall Feb 16 at 23:50
This answer is actually a hybrid of HQL and the criteria API – Ben Laan Jun 28 at 4:59
vote up 5 vote down

Criteria API Method:

ICriteria criteria = DaoSession.CreateCriteria(typeof(T));
criteria.SetFirstResult(StartIndex);
criteria.SetMaxResults(MaximumObjects);
return criteria.List<T>();
link|flag
+1. I'll have to look into this MaximumObjects. Pretty cool. – B. Tyndall Feb 17 at 0:09
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 at 1:13
Haha... so in other words it is identical to CreateQuery() after the instance is created. – Andrew Burns Feb 19 at 15:47

Your Answer

Get an OpenID
or

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