With Core Data Fetched Properties, how do I perform this simple request:
I want the Fetched Property (myFetchProp
) to be on store StoreA
, and it should do:
[myFetchProp getMeRecordWithPredicate:@“X == 35” inEntity:@“entityH” fromStore:StoreB];
Forgive my wrong-syntax, but I suppose my point is easy to understand.
I can’t find any simple and clear example on the net. I presume that should not be so difficult.