Given the following:
class Customer string name end
class Order int number end
I am creating a list of orders. For each order listed, i'd like to display the associated customer name. is there a way to do that via the object graph, or do I have to look it up manually?
Chris