Hi
Is it possible to ask NHibernate to eager load a property of an element held within a map collection? I have done a fair bit of googling and tried a few different variations with no success.
My current attempt in HQL is below, the third line, where I try to fetch "responsibilities", is the issue.
select c from Company c
left join c.employees e
left join element(e).responsibilities r
where
c.id = :id
Any advice would be appreciated.
Thanks
Michael