includesPendingChanges with MR_findAllWithPredicate ?
JimmyYezeguelian opened this issue · 0 comments
JimmyYezeguelian commented
Hi, I'm wondering if when retrying objects with: MR_findAllWithPredicate:
, includesPendingChanges
was activated ?
I've make another method using:
NSFetchRequest *fetchRequest = [[NSFetchRequest alloc] initWithEntityName:[Entity MR_entityName]];
fetchRequest.includesPendingChanges = YES;
fetchRequest.predicate = [NSPredicate predicateWithFormat:@"issueId == %@", issueId];
NSArray *array = [Entity MR_executeFetchRequest:fetchRequest];
Thanks you in advance.