On Mar 10, 2018, at 13:06 , Steve Christensen <puns...@mac.com> wrote: > > Don't complicate your life by managing multiple NSFetchedResultsControllers. > Just create a single one that returns Club entities.
The other valid approach, I think, is to “join” the two entities. That is, introduce a third entity, say “Membership” which represents a single Person belonging to a single Club. Person then becomes one-to-many for Membership, and Club becomes one-to-many for Membership, and there is no many-to-many relationship any more. There is still complication in doing the kind of enumerations needed for a table view, but life is generally easier without many-to-many relationships. _______________________________________________ Cocoa-dev mailing list (Cocoa-dev@lists.apple.com) Please do not post admin requests or moderator comments to the list. Contact the moderators at cocoa-dev-admins(at)lists.apple.com Help/Unsubscribe/Update your Subscription: https://lists.apple.com/mailman/options/cocoa-dev/archive%40mail-archive.com This email sent to arch...@mail-archive.com