I have an Order object and the Order object contains a Person object which stores the information about the person who placed the order. When I populate the Order object am I supposed to populate the Person object as well? Or would I be better off calling order.GetPerson() whenever I need to access to the person who placed the order.
Share
You may consider the
LazyLoadingapproach. So that the Person data will be fetched and loaded when it is required (queried for the first time)