Replies: 1 comment 2 replies
-
Hello,
No, in your object graph the city is only accessible via Person -> Address -> City.
No, to do so you need to remove the Lazy Reference. Here are some more details on Lazy-References and how they work: *Lazy-Reference |
Beta Was this translation helpful? Give feedback.
-
Can I load a city for a specific Person without first loading the Person and Address?
getStateForPerson(String personName)
getPerson(String personName)
Can I load the entire person object, even if its variables are lazy, without doing a separate get on the lazy variables?
Beta Was this translation helpful? Give feedback.
All reactions