storing OrderLine Objects in Order Object

2
as the title says, i want to store OrderLine objects (multiple) in one Order. my relation is like: "One order Object is associated with Multiple Orderline Objects". but how do i store orderlines in an order? thanks in advance
asked
1 answers
1

I'm assuming the OrderLine object is the owner of the association and it is the '*' side (the '1' side being the Order), so you can simply point each OrderLine towards the relevant order (just set the association OrderLine_Order to the Order object)

answered