Вы думаете о CoreData в терминах СУБД, которой она не является.Вам не нужно устанавливать внешние ключи для создания отношений в CoreData.Если вы хотите назначить электронное письмо пользователю, вы просто создаете связь между ними и можете установить атрибут «электронная почта» пользователя или атрибут «пользователь» электронной почты.ForeignKey и связывание выполняются CoreData в фоновом режиме.
С другой стороны, каждое отношение по определению: 1-1, 1- * или - .Я не уверен, что есть какой-либо другой выбор ...
Когда вы создаете отношения в CoreData, вы эффективно создаете новые атрибуты для этого элемента.Вот пример:
@interface User : NSManagedObject
#pragma mark - Attributes
@property (nonatomic, strong) NSString *name;
@property (nonatomic, strong) NSString *emailAddress;
#pragma mark - Relationships
//All to-many relationships are saved as Sets. You can add to the "emails" relationship attribute to add email objects
@property (nonatomic, strong) NSSet *emails;
//All to-one relationships are saved as types of NSManagedObject or the subclass; in this case "Institution"
@property (nonatomic, strong) Institution *institution;
Установить их так просто:
User *user = [NSEntityDescription insertNewObjectForEntityForName:@"User" inManagedObjectContext:[self.fetchedResultsController managedObjectContext]];
[user setName:@"Matt"];
[user setEmailAddress:@"matt@stackoverflow.com"];
//...Maybe i need to query my institution
NSFetchRequest *query = [[NSFetchRequest alloc] initWithEntityName:@"Institution"];
[bcQuery setPredicate:[NSPredicate predicateWithFormat:@"id == %@", institutionId]];
NSArray *queryResults = [context executeFetchRequest:query error:&error];
[user setInstitution:[queryResults objectForId:0]];
//Now the user adds a email so i create it like the User one, I add the proper
//attributes and to set it to the user i can actually set either end of the
//relationship
Email *email = ...
[email setUser:user];
//Here i set the user to the email so the email is now in the user's set of emails
//I could also go the other way and add the email to the set of user instead.
Надеюсь, это поможет немного прояснить ситуацию!Ознакомьтесь с документацией, чтобы убедиться, что CoreData подходит именно вам!
http://developer.apple.com/library/mac/documentation/Cocoa/Conceptual/CoreData/CoreData.pdf