My object graph is simple.

I've a feedentry object that stores info about RSS feeds and a relationship called Tag that links to "TagValues" object. Both the relation (to and inverse) are to-many. i.e, a feed can have multiple tags and a tag can be associated to multiple feeds.

I referred to http://stackoverflow.com/questions/844162/how-to-do-core-data-queries-through-a-relationship and created a NSFetchRequest. But when fetch data, I get an exception stating,

NSInvalidArgumentException unimplemented SQL generation for predicate

What should I do? I'm a newbie to core data :( I know I've done something terribly wrong... Please help...

Thanks

--

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; 

--

link|improve this question

58% accept rate
post some of your code so we can have a better look – ctshryock May 29 '09 at 15:17
Mungunth, it looks like you may be forgetting to set the entity of the fetchRequest after re-setting the predicate to 'tag IN predicates'. If this isn't the issue, please also post a pic of the object model and I can give you a bit more guidance. – Barry Wark Jun 2 '09 at 18:01
Mugunth> You should add your solution as an answer and accept it. – U62 Jun 12 '09 at 11:22
I got the answer through devforums.apple.com. Till the NDA is in place, I can't divulge the answer... :( – Mugunth Jun 13 '09 at 7:03
feedback

2 Answers

They key here is "ANY"

Example from apple:

NSPredicate *predicate = [NSPredicate predicateWithFormat:
    @"ANY employees.firstName like 'Matthew'"];

http://developer.apple.com/mac/library/documentation/cocoa/conceptual/CoreData/Articles/cdBindings.html

link|improve this answer
feedback

Do you require SQLite? I am grappling with a similar issue, and have found that everything works as expected with a binary store.
There are limitations when using SQLite as a store, though I have not yet found a document that lists the limitations, only that they exist.

Sorry I can't be of more help.

link|improve this answer
Yes, it works with a binary store. I used a sql lite db as it seems to be faster in my case. I deal with data of sizes close to 5MB (on iPhone). App loading time is < 1sec for sqlite where as it's close to 2 sec for binary store. – Mugunth Jun 1 '09 at 1:46
I foudn the answer though... NSPredicate *predicate = [NSPredicate predicateWithFormat:@"tag IN %@", predicates]; [fetchRequest setPredicate:predicate]; should be changed to NSPredicate *predicate = [NSPredicate predicateWithFormat:@"ANY tag IN %@", predicates]; [fetchRequest setPredicate:predicate]; – Mugunth Jun 1 '09 at 1:47
1  
Good to know - it's strange, your message is very similar to one I had, and yet mine is due to a limitation of Core Data with SQLite. Know to figure out how to tell the difference! – emp Jun 1 '09 at 19:15
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.