Hello,
Unless I have missed something in the documentation, I can't see if it is possible to execute an NSFetchRequest so that it returns an array of properties of objects, instead of the objects themselves.
For example, I have:
@interface SaleDate {
NSDate *open;
NSDate *close;
Sale *sale;
}
I want to query something like "close >= $today". However, this gives me an array of SaleDate, when what I really want is a distinct array of Sale. I am using this with a NSFetchedResultsController and so need it to deal with Sale object.
Incidentally, I have another (preferred) query working when using a binary store - it's the SQLite store that is making me go though hoops to find an alternate but equivalent query.
Thanks