I have created entity with following methods
NSManagedObjectContext *localContext = [NSManagedObjectContext MR_contextForCurrentThread];
Contact *contact = [Contact MR_createInContext:localContext];
And
Contact *contact = [Contact MR_createEntity];
Above methods are called inside a for loop and values are set. After that, I didn't executed any save method for above entity instance. However, after loop is completed, when I read from coredata,
NSArray *savedContacts = [Contact MR_findAll];
NSLog(@"Saved contacts : %d", [savedContacts count]);
It prints the saved entities count. So, are these entities autosaved? or are there any settings that is causing MagicalRecord to save each entities?
Any sort of information would be very essential. I am using MagicalRecord version 2.2. The issue has been opened here which points to ask question on SO with MagicalRecord tag.