My question can be applied to any type of relationship but in my case I have a one to many.
Let's say I have an Entity Person which has 3 objects:
Brian
Peter
Scott
And each person can have many Jobs. So I have a Job entity that is currently empty. The inverse relationships for both entities are already created and they work great. Just to be clear my problem is not inserting an object(I know how to do that), is the specific way of insertion.
So the more specific question is:
How can I insert one or more job objects into the Job Entity and assign each of them to one of the Person objects that currently exist in Core Data?