I have a customer entity. A customer can have many orders.
While doing some work I want to get a list of orders associated with that customer
Customer cust = new Customer(id);
cust.Orders();
Is there an easy way to export the collection of orders to a data table or do I need to apply a filter and use get multi as data table?
Thanks