Hi Ronald, i am not sure wheather i got you right, but in your first post you wrote that your relation is lazy which means that it is fetched in a select by default on the first touch. If you want to fetch it with a join try lazy="false". Also there exist some limitations on joined fetching in NHibernate. Maybe i get blamed for this but as far as i know you can only fetch the first and second node joined: If A has a Collection of B has a Collection of C you will only get a List of A with a collection of B joined. The Collection of c will always remain a proxy Alternatives or workarrounds are of cause Multiquery and MultiCriteria but with a different approach.
Hopefully this helps (if it is at least affecting someone correcting my mistakes or backing up my assumptions) zoid --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "nhusers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/nhusers?hl=en -~----------~----~----~----~------~----~------~--~---
