I need to migrate an iOS Core Data store to a new version. In one entity I naively relied on time stamps as a means to sort the data in the order received. This is problematic due to clock skew. In the new data model I generate a monotonically increasing integer ordinal to maintain proper ordering. I plan to use a custom NSEntityMigrationPolicy subclass for migrating this entity. I would like to process the source entities in timestamp order, so that I can generate the appropriate integer ordinals. It looks like I can use the setSourceExpression method of NSEnityMapping to set "a fetch request expression, or any other expression which evaluates to a collection". I'm sure what this means specifically, and I haven't found any examples of how to create such an expression.

link|improve this question

0% accept rate
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.