I want to create NSFetchRequest
and set properties to fetch like this:
request.propertiesToFetch = @[@"a", @"b", @"c"];
where a
and b
are stored in Core Data database, and c
is transient. executeFetchRequest:
fires an error Invalid keypath c passed to setPropertiesToFetch:
. But if I uncheck transient-checkbox for property c
everything will work fine.
So is it really impossible to fetch transient properties or I'm doing something wrong?