I am using the visual editor for creating a Core Data model. I can't figure out how to set a fetched property's predicate so that it uses the source entity's attributes in the predicate.
For example, I have EntityA with an attribute searchId. I also have EntityB with an attribute id. What I want to do is find all instances of EntityB whose id is equal to EntityA's searchId atrribute. When I try to edit the predicate, the drop-down list for the left-hand side and right-hand side only contain the keys for the destination, which in this case is EntityB, and no way to select any key from EntityA.
I know that you can just create the predicate programmatically, but I was wondering if there's a way to do it using the visual editor.