Setup:
I have a Core Data object A that has a to-many relation to B. Call the relation \"items\". So, a.items returns all B-s associated with A.
Now, I have
Have you tried:
NSPredicate *predicate = [NSPredicate predicateWithFormate:@"items == %@", itemSet];
Alternatively, pull out a subset with a simpler predicate and filter them outside of the fetch request. i.e.