Selfservicing, 2.5 C#
I have a customer in a transaction (customer.Transaction is not null)
When I call this line of code:
order = customer.OrderCollection.AddNew();
order.Transaction is null.
Is there a way to tell the top level object that all object made in all children all join the same transaction as the top object, in this can customer?
Ian