My model has an entity "Filter" and an entity "Color". I want to have two "To-Many" relationships between them: "backgrounds" and "foregrounds". (i.e. each "Filter" contains an array of background colors, and an array of foreground colors, all of type "Color").
I have two problems. First, when I set up the relationships the inverse from "Color" can only have one value (I'm guessing this means I can't do what I want). Second, I can't figure out how I would create a predicate to fetch only the backgrounds or only the foregrounds. I assume the following will return all of them merged together (if it worked at all):
NSFetchRequest *fetchRequest = [NSFetchRequest fetchRequestWithEntityName:@"Color"];
NSPredicate *predicate = [NSPredicate predicateWithFormat:@"filter == %@", self];
I'm about to solve this by converting Color into two Foreground and Background entities, but I don't want to do that without understanding why a single entity won't work. Am I missing something here?


