anyone can help me to find a solution in this problem, i have this Core data model:

EDIT:
i formulate better my question, i want retrieve all taskes for a specifc name of the entity MyDate that have taskes.isView = NO and task date = today..
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
I would fetch on the
Taskentity with the predicateto find
Taskswhose taskDate has nametaskNameandisViewisNO.If, instead you need to find
Tasksthat hava ataskDatewith the given name and any of thetaskDate‘staskes[sic] haveisView==NO, then you need (fetching onMyDateentity):From the result
resultSetof the fetch, you can get all of theTasksusing Key-Value Coding Collection Operators: