开发者

Adding a relationship in my data model causes NSFetchRequest to return zero items

开发者 https://www.devze.com 2023-01-14 14:01 出处:网络
I have a simple entity called \"Store\" built in Xcode\'s data modeler for use in an iPhone application.I also have a class (Store) associated with it and I\'ve been able to store and retrieve data us

I have a simple entity called "Store" built in Xcode's data modeler for use in an iPhone application. I also have a class (Store) associated with it and I've been able to store and retrieve data using CoreData without any problems.

Now I realized that I want to have a relationship to another entity (Aisle). There is already a one-to-one relationship from Aisle to Store, but since there can be multiple Aisles in one Store, I tried to add the reverse. The new relationship is one-to-many, the inverse of the original one-to-one relationship, optional, and has delete set to cascade. I also recreated the associated Store class so that there is now an NSSet ivar in the class definition as well.

Just adding this relationship causes my existing data to be irretrievable through NSFetchRequest. As I'm debugging I see that the array that is being populated by the request contains zero items, but looking at the SQL database I see that the objects are all there. If I remove the new relationship everything works just fine.

Here is my code to retrieve the data:

NSManagedObjectContext *context = [self managedObjectContext];
NSFetchRequest *fetchRequest = [[NSFetchRequest alloc] init];
NSEntityDescription *entity = [NSEntityDescription entityForName:@"Store" inManagedObjectContext:context];

[fetchRequest setEntity:entity];

NSError *error;
NSArray *storesList开发者_如何学Python = [context executeFetchRequest:fetchRequest error:&error];

[fetchRequest release];

Any idea why my fetch isn't working correctly?

Thank you!


Have you deleted the sqllite file and recreated the DB and repopulated it after the change in the model? If not, you may want to consider this.

0

精彩评论

暂无评论...
验证码 换一张
取 消