i would like to understand a bit more Core Data, why do we "fetch" and search for entities while the entities are "inside" managed objects? For example :

NSManagedObjectContext *moc = [self managedObjectContext];  
NSEntityDescription *entityDescription =
    [NSEntityDescription entityForName:@"Employee" inManagedObjectContext:moc];  
NSFetchRequest *request = [[[NSFetchRequest alloc] init] autorelease];  
[request setEntity:entityDescription];

also, what does a persistent object store contain? if i understood, the persistent object store takes data from a sqlite file, but then it gets a bit confused, is it : one entity, for one persistent object store, for one data inside the sqlite file?

Thanks for your answers

Paul

link|improve this question

feedback

1 Answer

up vote 2 down vote accepted

Basically there are 5 components here. A persistent store coordinator, a managed object context, a managed object model, entities and managed objects. They all work together to provide an object graph management system (note that Core Data is not an ORM so it helps not to think of it that way). Below is a description of the components and the various other classes in CoreData that interact with them

  • NSPersistentStoreCoordinator - This handles the loading of data to and from disk. It deals with various stores (NSPersistentStore). The included store types are binary, XML and SQLite. You can write your own stores (using the NSAtomicStore and NSIncrementalStore classes), for example if you have your own file type (theoretically you could write a store to open a Word or Photoshop file if you desired)
  • NSEntityDescription - An entity can be sort of thought of as the "class" of a managed object. It defines any attributes (NSAttributeDescription), relationships (NSRelationshipDescription) and fetched properties (NSFetchedPropertyDescription) that a managed object should have, as well as other properties such as the NSManagedObject subclass that should be used
  • NSManagedObjectContext - This is the in memory "scratch pad". It is where you query for objects (using NSFetchRequests), create objects, delete objects etc. You can have multiple contexts, and throw one away without saving to discard any changes you no longer need.
  • NSManagedObject - The core unit of Core Data. These are your model objects that hold your data. You set the attributes, relationships etc on them.
  • NSManagedObjectModel - This represent the data model to use for your data, which is usually defined in a .mom file created within Xcode. This is where all the entities are stored.

That's pretty much the whole of core data. There are some other classes for doing migrations and merging

link|improve this answer
Like the answer but a few small changes. NSManagedObjectModel and the NS*Description classes all define what Core Data model should/can contain. NSPersistentStoreCoordinator is the class capable of realizing what could be in the model into what is in memory and vice versa. The NSManagedObject instances are the model realized in memory. The NSManagedObjectContext is the manager that ensures that what should be is eventually consistent with what is. – PeyloW Aug 1 '11 at 22:07
Thanks for both of your answers, i am still a bit confused with NSManagedObject and Entity : so the managedObject contains 1 entity, and the managedObjectModel contains all the managedObjects? or are they separated? – Paul Aug 2 '11 at 10:43
A managed object model contains all the entities. A managed object context contains all the managed objects. Every managed object has an entity (much like how every object has a class). – Martin Pilkington Aug 2 '11 at 14:17
alright... is the entity like a subclass of managed object? it just confuses me that we don't search for "managed objects" but for "entities", if as you said every manage object contains 1 entity – Paul Aug 2 '11 at 15:00
No. A managed object is like an instance of an entity. If you've done database work before imagine it like this, an entity is a table and a managed object is a row. You specify an entity to filter the managed objects. In the example you gave you are getting back all the managed objects of the entity Employee. Again, if you've done database stuff before, then in terms of SQL you might have done SELECT * FROM Employee – Martin Pilkington Aug 3 '11 at 20:53
show 3 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.