I have a one to many relationship, relationship "people", from my main entity to another entity, entity "People", with a list of people, attribution "person". I am trying to do a search with a fetchedResultsController for all the main entities where a particular "person" does not have a relationship "people". I have tried using this predicate search strings:
@"(NOT ('%@' IN[cd] people.person))", notPersonSearch
@"(NOT (ANY people.person == '%@'))", notPersonSearch
They both sort of work. If only one "person" has a relationship to the main entity than that particular entity is excluded from the search results. However if there are more than one "person" with a relationship to the main entity that entity is included in the results even if the excluded name is one of the "person" attributes.
First is there a better way to write this predicate? If not can I run a second search for entities that match the notPersonSearch and compare them with all the results and keep the results that are not common to both searches?