How do I extract objects from a many-to-many relationship?
I am making an app which has the following entities in a many-to-many relationship.
Game <<--->> Team.
I would like to make labels which display the following objects: 'Game.id' and 'Team.name'.
When I fetch the Games Entity I can access the 'teams' NSSet but I can not extract the 'Team.name' object e.g 'Game.teams.name'.
I would like to return [Game 1, Team A, Team B]