NSFetchRequest returning nothing
Can anyone spot why this isn't returning any ManagedObjects? I'm trying to add to the ATNSManagedObject+EasyFetching class the following, but the fetch result returns nothing. If I fetch these outside of the EasyFetch class I have 100+ objects so I know it isn't CoreData being empty. + (void)deleteAllObjectsInContext; { NSManagedObjectContext *context = [NSManagedObjectContext defaultContext]; NSEntityDescription *entity = [self entityDescriptionInContext:context]; NSFetchRequest *request = [[[NSFetchRequest alloc] init] autorelease]; [request setEntity:entity]; //[request