I have a old core data model with two entities:
First entity
FirstString has an attribute: string1 which is NSString
Second entity
SecondString has an attribute: string2 which is NSString
They have a one to many relationship: first entity <--->> second entity.
The new entity - "ComboEntity" - has one to one relationship with both first entity and second entity.
Now I have new core data model with new entity
ComboEntity has an attribute: fullString
Question:
How do I migrate the data and combine string 1 and string 2 into fullString?
Thanks!