Hi Patrick,
You could create 2 associations between Matches and Players e.g. Matches_PlayersHome and Matches_PlayersAway. You can now use a reference selector for each association.
If you do so, you won't need the playersnames in the Matches entity anymore.
Good luck!
Kind regards,
Martijn Hingstman
Hi Patrick,
Right now you are using the same association ‘Matches_Players/Player/Playername’ for both names, while also having only a 1-* association between players and matches. This mean that you are only able to set 1 player per match. That’s why when you select Brian, the other player will be filled with Brian as well.
Now to solve this you could make the association ‘Matches_Players’ a *-* association instead of a 1-* association. Thenm you would need to use a reference set selector instead as well https://docs.mendix.com/refguide7/reference-set-selector
However, I’m not sure if this will work with the impedements you have, but i hope it works out for you.