// Setup magical record
[MagicalRecord setupCoreDataStack];
NSLog(@"Groups at startup: %d", [Group findAll].count);
[Group createEntity];
[[NSManagedObjectContext defaultContext] save];
I've placed this bit of code in my AppDelegate. Everytime I start up the app, I see the count as 0. What am I missing?