Lets say i have a fetched result array filled with entities (Entity-A)
All these entities are in a relationship with another EntityB.
There might be some missing Entities in fetchedArray, in which case I want to manually create a new Entity-A, set it to a relationship with EntityB and add it to the entities array manually,
Doable, but I don't want to save those "created", "new" entities of A type.
If i do create a new Entity-A and add nil to its NSManagedObjectContext, i cannot add it as a relationship to entityB, cuz its in in the objectContext..
Is there another way here? i don't want to risk adding it to the db then deleting it cuz the apps connected via core data, and that would add a whole lot of complications, not to forget the unusual occurrences when the app just closes, battery running out or something..
My main question is a way to add the new Temporarity Entity in a relationship with the existing entity and forget about saving it..
any way out is really really appreciated, been struggling with this..