Is there a way to simulate the Sub Select Methods without pulling out the whole set that you want to limit against.
In this question Core Data: Query objectIDs in a predicate?
they gave a demonstration of using the not in limit. But it shows using a list of objects that you would want to limit against.
NSPredicate *predicate = [NSPredicate predicateWithFormat:@"NOT (self IN %@)", arrayOfExcludedObjects];
Is this the only way to do this or is there a way to limit against a sub query so I dont have to get the results of a query I want to limit against.