Il mio grafico degli oggetti è semplice.Dati principali NSPredicate per le relazioni
Ho un oggetto feedentry che memorizza informazioni sui feed RSS e una relazione denominata Tag che collega all'oggetto "TagValues". Sia la relazione (sia quella inversa) sono per molti. Ad esempio, un feed può avere più tag e un tag può essere associato a più feed.
Mi sono riferito a How to do Core Data queries through a relationship? e ho creato un NSFetchRequest. Ma quando recuperare i dati, ottengo un'eccezione affermando,
NSInvalidArgumentException non implementato la generazione SQL per predicato
Cosa devo fare? Sono un novizio di dati fondamentali :(Lo so che ho fatto qualcosa di terribilmente sbagliato ... Please help ...
Grazie
-
NSFetchRequest *fetchRequest = [[NSFetchRequest alloc] init];
// Edit the entity name as appropriate.
NSEntityDescription *entity = [NSEntityDescription entityForName:@"FeedEntry" inManagedObjectContext:managedObjectContext];
[fetchRequest setEntity:entity];
// Edit the sort key as appropriate.
NSSortDescriptor *sortDescriptor = [[NSSortDescriptor alloc] initWithKey:@"authorname" ascending:NO];
NSArray *sortDescriptors = [[NSArray alloc] initWithObjects:sortDescriptor, nil];
[fetchRequest setSortDescriptors:sortDescriptors];
NSEntityDescription *tagEntity = [NSEntityDescription entityForName:@"TagValues" inManagedObjectContext:self.managedObjectContext];
NSPredicate *tagPredicate = [NSPredicate predicateWithFormat:@"tagName LIKE[c] 'nyt'"];
NSFetchRequest *tagRequest = [[NSFetchRequest alloc] init];
[tagRequest setEntity:tagEntity];
[tagRequest setPredicate:tagPredicate];
NSError *error = nil;
NSArray* predicates = [self.managedObjectContext executeFetchRequest:tagRequest error:&error];
TagValues *tv = (TagValues*) [predicates objectAtIndex:0];
NSLog(tv.tagName); // it is nyt here...
NSPredicate *predicate = [NSPredicate predicateWithFormat:@"tag IN %@", predicates];
[fetchRequest setPredicate:predicate];
// Edit the section name key path and cache name if appropriate.
// nil for section name key path means "no sections".
NSFetchedResultsController *aFetchedResultsController = [[NSFetchedResultsController alloc] initWithFetchRequest:fetchRequest managedObjectContext:managedObjectContext sectionNameKeyPath:nil cacheName:@"Root"];
aFetchedResultsController.delegate = self;
self.fetchedResultsController = aFetchedResultsController;
-
post di qualche del codice in modo che possiamo avere un aspetto migliore – catsby
Mungunth, sembra che si può dimenticarsi di impostare l'entità di fetchRequest dopo aver reimpostato il predicato su 'tag predicati IN'. Se questo non è il problema, per favore pubblica anche una foto del modello dell'oggetto e io posso darti un po 'più di guida. –
Mugunth> È necessario aggiungere la soluzione come risposta e accettarla. – U62