I am wondering how do I order a group of results after a select with QueryOver. My query is the following:

CurrentSession.QueryOver<Book>()
    .Where(b => b.Author.Name = "SimpleName")
    .Select(Projections.Distinct(Projections.Property<Book>(b => b.Genre)))
    .OrderBy<Genre>(g => g.Name) // this extension does not exist! How do I order for a Genre?
    .List<Genre>()

How can I do?

Thanks!

link|improve this question

67% accept rate
feedback

1 Answer

up vote 4 down vote accepted

Your query won't work to begin with. You first of all need to do a join, then you can do your order by and select projections.

Author author = null;
Genre genre = null;
CurrentSession.QueryOver<Book>()
     .JoinAlias(b => b.Author, author)
     .JoinAlias(b => b.Genre, genre)
     .Where(() => author.Name == "SimpleName")
     .OrderBy(() => genre.Name)
     .Select(Projections.Distinct(Projections.Property<Book>(b => b.Genre)))
     .List<Genre>();
link|improve this answer
Thank you, very clean and clear. – StockBreak May 17 '11 at 18:09
2  
Btw I am using QueryOver instead of LINQ to NHibernate because some queries (such as this one) often give a clueless NotSupportedException :( – StockBreak May 17 '11 at 19:25
feedback

Your Answer

 
or
required, but never shown

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