Ok..that much I was hoping I understood.. so that does mean then that an entity nested 3 levels down (in my exmaple, email->user->address->state) would load?
The one that doesn't seem to work for me is using the query manager. Does query manager ALSO load all eager loaded nested entities all the way down the chain? Or do I have to loop through each item (or grab each item) and do another query and set it on the parent object to get nested entity data?
So here I am looking for an email by its
string value in an email table using a named query. When it finds the email, the getUser() should return the user object that the email is tied to (user has one to many emails attached to it). At that point, will the getUser().getAddress().getState() work via the query on email?
Thanks