Core Data is a high level library which purpose is to manage and persist an object graph as transparently as possible. How Core Data links objects in the database (which is not necessarily a database by the way) is an implementation detail.
In the model editor, you simply create the entities you need and link them with relationships. Core Data manage the connections for you.
Person:
- first_name: string
- middle_name: string
- last_name: string
- private_address: -> Address (to-one relationship)
- work_address: -> Address (to-one relationship)
Address:
- persons: ->> Person (to-many relationship, you may want to reuse an address)
- address1: string
- address2: string
- zip: string
- city: string
- country: string
...
person.first_name returns you the first name of the person, and person.private_address.city returns the person's city of residence as easily. address.persons returns all the persons sharing the same address (private or/and work), as an NSSet. address.persons.count returns how many persons share that address. What you see is an object graph.
Core Data provides you some sort of unique ID for every entity, once the entity is saved at least, objectID, an opaque NSManagedObjectID. You'll maybe better served with the URIRepresentation (again, once the entity is saved). If your intention is to create cross-store relationships, you can use the URIRepresentation or use your own unique ID. It's fairly easy to maintain a per-entity unique ID, or even a per-store unique ID.
But most of the time, you do not have to deal with such low level concerns though. Core Data is pretty good at managing the relationships for you.
NSManagedObjectsubclass for each of your entities, and use anNSFetchedRequestto fetch all entities matching conditions you set. When you fetch a person in this way, you can simply useperson.addressto get the address assigned to that person. – PartiallyFinite Jun 11 '12 at 4:52