Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

CoreData: Fetching an Object from an unsaved Context

after I insert a ManagedObject into a context I'd like to fetch it later but before saving the context (I'd save after all objects are inserted). It appears that querying the context later with a fetch concerning those objects returns nothing if the context wasn't previously saved. Is there a way to save only in the end ?(I guess i can save my objects in an array or dictionary and query that but i thought coredata would do this for me)

like image 689
rano Avatar asked Jul 13 '10 08:07

rano


1 Answers

Try this:

[myFetchRequest setIncludesPendingChanges:YES];

From the documentation:

Sets if, when the fetch is executed, it matches against currently unsaved changes in the managed object context.

like image 134
Mike Weller Avatar answered Nov 11 '22 15:11

Mike Weller