1- I have a type Project and a type Task. One project can have multiple tasks.
2- A Task has a yes/no field ‘IsCompleted’ that indicates if the task is completed or not.
How can I retrieve the all the projects that have uncompleted tasks?
How can I put a condition on a join between Project and Task?