In my dataverse model driven app I have an entity "order" and an entity "issue".
The relationship between them is N to 1 ie multiple orders, 1 issue.
If I am creating a new order from the main order form there is a lookup field to "issue". I can either select an existing "issue" or (if required) create a new one using the quick create form.
When using the quick create form I would like the field "account" to automatically populate from what is on the order form. I can see how to map from parent entity "issue" to child entiy "order" but understand you can not create mapping from child entity to parent entity.
I have read some blogs on how to do this using js and local storage but the local storage option sounds like it may be a little unreliable.
Any help on the best way to handle this would be really helpful. Thankyou.