issue-4-full-core-data-application
issue-4-full-core-data-application copied to clipboard
Core Data not firing fault when accessing relationship attribute?
I am using the model described in this chapter under the Entity Hierarchy vs. Class Hierarchy however i am running into the problem where Core Data is not firing a fault when I access an attribute on a relationship. ie
manager.employee.name
To get the fault to fire i have to use:
[manager valueForKeyPath:@"employee.name]
Any ideas on how to remedy this? I am also a little concerned about what else might not be going on behind the scenes?
I have also gone into a little more details about more data model in this SO post:
http://stackoverflow.com/questions/19718724/core-data-not-firing-fault-when-accessing-relationship-property/19719333?noredirect=1#19719333
Bump, anyone?