vote up 0 vote down star

With a SQL Query I can order by N, where N is a column index. For example

 SELECT name, salary FROM employee ORDER BY 2;

How can I do this with nHibernate?

flag

3  
Ordering by ordinals is a bad habit - if the order of columns changes, so does your ordering. – OMG Ponies Oct 27 at 19:53

1 Answer

vote up 0 vote down check

You can't. NHibernate order by clause requires property names (aliases) and / or expressions to be specified.

link|flag
so I need fluent hibernate? (not that I know what that is) – Ian Quigley Oct 27 at 19:57
1  
Fluent NHibernate is just a way to declare mappings for your entities without resorting to XML; it has nothing to do with HQL's order by. You cannot (nor should you as rexem rightly pointed out above) order by ordinals in HQL. – ChssPly76 Oct 27 at 20:07

Your Answer

Get an OpenID
or

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