Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
1.1k views
in Technique[技术] by (71.8m points)

objective c - Core Data migration fails for to-one relationship

I have the following model:

Model Version 1

parent is a to-one relationship (optional, no minimum, maximum=1). children is the inverse to-many relationship (optional, no minimum, no maximum).

I added a new model version, where only the Entity Room is renamed to Classroom, all other entities are unchanged:

Model Version 2

I also created a mapping model for the migration, but the migration fails with the error message

reason = "Can't find mapping model for migration";

The strange thing is that if the parent relationship is created with minimum=1 (instead of no minimum) then the migration works without problems.

The persistent store is opened with the options

NSDictionary *options = @{NSMigratePersistentStoresAutomaticallyOption:@YES, NSInferMappingModelAutomaticallyOption:@NO};
See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

Why do you need a mapping model? You should avoid these complexities and simply use Lightweight Migration as explained in Apple's Lightweight Migration Documentation.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
...