I am trying to update an application that currently uses straight SQLite to use Core Data. In the current database, there are several many-to-many relationships that I will have to migrate over. This was setup by creating an index/id column in the "entity" tables, and using those id's to reference each row.
Since Core Data handles the indexing and relationships between entities, how do I rebuild these relationships when I am copying the data over? Do I have to add an ID attribute so I can maintain the original references? Is there a better way?
Also, is this something I can use a migration manager for?
Thanks!