Does it matter from which object I set the association in case of a 1-1 assocation between objects?

4
I have e.g. a 1-1 in my domain model between Customer and Profile. I'm creating a Customer object and Profile object in a Microflow and want to set the association. Does it matter if I store the association in Customer to Profile or the other way around? Does the way I store the association affect my application (user interface, retrieve activities, etc.) in any way in case of a 1-1 association?
asked
3 answers
2

There is no difference. The runtime environment will make sure that the association is set from both sides. You can access this associations from both sides because both sides are navigable.

answered
2

It shouldn't.......

answered
1

Maybe for 'retrieve by association', that you can only use that option from the object in which you have stored the reference

answered