In v1 of my model I have a one to many relationship between a presentation
and slides
:
presentation---->>slides
In v2 I fix this foolishness by adding an inverse one to one:
presentation<--->>slides
In both models a slide
belongs to 1 and only 1 presentation
(although this is not codified within the models).
How do I specify the value expression in the mapping model to create the slide-->presentation
relationship without creating an NSEntityMigrationPolicy
subclass?