Hello,
I need to be able to cascade a change from an entity onto entity collections contained within that entity.
For example if I set the Cancel date of an Order I would need to loop through all the OrderItems within the Order and set the Cancel date on those as well.
My plan is to override the OnSetValueComplete event handler of the OrderEntity and determine the field and the course of action.
My question is regarding fetches. Do I need to be concerned that this code will be called while and item is being fetched? If so how would I prevent the custom method call when it is?
Thanks in advance!