I see this in the predicate programming guide:

If you use a to-many relationship, the construction of a predicate is slightly different. If you want to fetch Departments in which at least one of the employees has the first name "Matthew," for instance, you use an ANY operator as shown in the following example:

NSPredicate *predicate = [NSPredicate predicateWithFormat:
    @"ANY employees.firstName like 'Matthew'"];

With the above construction, it would return the department with all employees objects associated to it, provided at least one of the employees have first name as 'Matthew'.

I would like to modify this to fetch ONLY those employees with first name as 'Matthew'. So if the department has only 2 employees matching this first name, only 2 employee objects should be returned.

How can I achieve this? thanks.

link|improve this question

68% accept rate
I am not sure but will beginswith help you? – 7KV7 May 5 '11 at 8:35
Hi, unfortunately not. using beginsWith by replacing the like, is giving me the same results. It is not allowing me to take out the ANY addition in the beginning because of the to-many relationship. thanks for the reply anyway. – user542584 May 5 '11 at 8:41
feedback

1 Answer

up vote 1 down vote accepted

You're executing this agains a set of Department objects, so you can only get back Department objects. If you want Employee objects instead, you'd have to do something like this:

Department *aDepartment = ...;
NSArray *employees = [aDepartment employees];
NSPredicate *filter = [NSPredicate predicateWithFormat:@"firstName = 'Matthew'"];
NSArray *matthews = [employees filteredArrayUsingPredicate:filter];

Also, since your LIKE filter doesn't have any ? or * symbols in it, it is equivalent to an "isEqual:" comparison.

link|improve this answer
yes, I figured out the same in the end. Thanks! – user542584 May 6 '11 at 7:20
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.