I have the following domain mappings:

Person
------
int PersonId
IList<PersonDetails> Details;

PersonDetails
-------------
Person Owner (mapped by using the FK field, PersonId)
string Name
string Address
DateTime UpdateDate

translated to a similiar table structure:

Person
------
PersonId (int)
Birthday (date)

PersonDetails
-------------
PersonId (FK, integer)
Name (string)
Address (string)
UpdateDate (date)

How do i recreate the following SQL query using QueryOver?

SELECT * 
FROM Person p INNER JOIN Details d ON p.PersonId = d.PersonId 
WHERE d.UpdateDate = (SELECT MAX(UpdateDate) 
                      FROM   PersonDetails
                      WHERE  PersonId = p.PersonId);

i.e, select the latest PersonDetails for each Person. I've seen examples, but neither of them related to a correlated subquery using an aggregae value...

Thanks, Harel

link|improve this question

18% accept rate
I'm sorry, your tables relationship is OneToMany, correct? – Faber Apr 4 '11 at 17:51
Oh, sorry i forgot this detail - the mapping is indeed a one-to-many relationship, as Person can "own" many PersonDetails objects. – Harel Moshe Apr 4 '11 at 21:35
I'm sorry but I haven't found a solution for your query but...if you're using Fluent NHibernate to map your tables to your models and if your query on Person and PersonDetails ALWAYS uses SELECT MAX(UpdateDate) maybe I've an idea :-) – Faber Apr 6 '11 at 9:30
feedback

1 Answer

up vote 9 down vote accepted

Hey, after sweating hard to find a solution, the following did the trick:

QueryOver.Of<Person>(() => personAlias)
     .Left.JoinAlias(p => p.Details, () => personDetailsAlias)
     .WithSubquery.WhereProperty(() => personDetailsAlias.UpdateDate).Eq(
            QueryOver.Of<PersonDetails>(() => maxPersonDetailsAlias)
                 .Where(ps => maxPersonDetailsAlias.Owner.Id == personAlias.Id)
                 .Select(Projections.Max<PersonDetails>(ps => ps.UpdateDate)))
                     .SelectList(resList => resList.Select(() => personAlias.Id).Select(() => personDetailsAlias.Id));

so the way for joining the correlated sub-query is by using an alias the 'outer' query.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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