Is it possible for a managed object to have a relationship with 'optional' unchecked?
If so, how can I insert it without having validateForInsert: fail? I want the relationship to be mandatory but I am unable to establish a connection between the current and another object before inserting it because the two objects I want to connect are in different contexts.
Concrete Example:
I generally have one MOC. Let's say I have a Person saved in the context.
Now I want to create a new one, so I instantiate a Person but do not insert it into the context yet. When the user picks a brother from some table view and I set the 'brother' property, the inverse relationship would attempt to establish a connection between the object saved in the MOC and the one that does not exist in the MOC yet, which would cause the app to crash.
My Question: if the 'brother' relationship would not be optional, could I even create and insert a new person?
initWithEntity:insertIntoManagedObjectContext:which immediately associates the object with a managed object context (but does not save it to the persistent store) – Jim Jan 30 at 20:50