Is it possible to see the completed query string, with all the variables substituted to their actual values? Would be good for debugging...
A:
You could just log the predicate with NSLog(@"%@", predicate). Most values will show directly, except those that are cast e.g. dates or bool. For those you will have to log the variable separately.
Run Loop
2010-06-20 14:29:29
A:
Yes, turn on Core Data debug and you will see the raw sql calls.
Marcus S. Zarra
2010-06-22 16:00:36