Cross-model relationships in NSManagedObjectModel from merged models? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T06:49:00Z http://stackoverflow.com/feeds/question/130316 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/130316/cross-model-relationships-in-nsmanagedobjectmodel-from-merged-models 2 Cross-model relationships in NSManagedObjectModel from merged models? Barry Wark 2008-09-24T22:27:01Z 2008-09-26T07:44:33Z <p>Is it possible to model relationships between entities that are defined in separate NSManagedObjectModels if the entities are always used within an NSManagedObjectModel that is created by merging the relevant models?</p> <p>For example, say model 1 defines an entity <code>Foo</code> with relationship (one-to-one) <code>toBar</code> and that model 2 defines an entity <code>Bar</code> with a relationship (one-to-one) <code>toFoo</code>. I will build a CoreData stack using <code>NSManagedObjectModel.mergedModelFromModels</code>, merging model 1 and model 2. Is there any way to define these relationships either in the data modeler or programatically so that they behave as if they were in-model relationships?</p> http://stackoverflow.com/questions/130316/cross-model-relationships-in-nsmanagedobjectmodel-from-merged-models/138064#138064 3 Answer by Chris Hanson for Cross-model relationships in NSManagedObjectModel from merged models? Chris Hanson 2008-09-26T06:47:35Z 2008-09-26T07:44:33Z <p>Neither model 1 nor model 2 will be loadable at run time unless they're well-formed — that is, unless the <code>toBar</code> and <code>toFoo</code> relationships have destinations. Furthermore, if model 1 and model 2 have identically-named models, you won't be able to create a merged model from them; they will not be coalesced, they will collide, which is an error.</p> <p>However, you can use the <code>NSManagedObjectModel</code> API manually to load each model and create a new model by hand that contains entities from both. The <code>NSEntityDescription</code> and <code>NSPropertyDescription</code> classes (and its subclasses) do implement the <code>NSCopying</code> protocol so in most cases you should just be able to copy properties over from each component model to your overall model.</p> <p>Furthermore, the <code>NS*Description</code> classes all support a <code>userInfo</code> dictionary that you can edit in Xcode's data modeling tool, which you can use to do things like tag the destination of a relationship as a stand-in. For example, in model 1 you could have a <code>Bar</code> entity with a <code>userInfo</code> key <code>MyRealEntity</code> and check for that when creating your merged model, as a signal to use the real entity instead.</p> <p>You'll also want to put stand-in inverse relationships to your stand-in entities; these will be replaced with real inverses after merging. You don't have to totally replicate your stand-in entities in all models, though; you only need the inverse relationships used in your real model in a stand in entity.</p> <p>Thus if your real <code>Foo</code> has a <code>name</code> attribute, and your real Bar has a <code>kind</code> attribute, your stand-in <code>Foo</code> and <code>Bar</code> won't need those, just stand-in <code>toBar</code> and <code>toFoo</code> relationships.</p> <p>Here's some code demonstrating what I'm talking about:</p> <pre><code>- (NSManagedObjectModel *)mergeModelsReplacingDuplicates:(NSArray *)models { NSManagedObjectModel *mergedModel = [[[NSManagedObjectModel alloc] init] autorelease]; // General strategy: For each model, copy its non-placeholder entities // and add them to the merged model. Placeholder entities are identified // by a MyRealEntity key in their userInfo (which names their real entity, // though their mere existence is sufficient for the merging). NSMutableArray *mergedModelEntities = [NSMutableArray arrayWithCapacity:0]; for (NSManagedObjectModel *model in models) { for (NSEntityDescription *entity in [model entities]) { if ([[entity userInfo] objectForKey:@"MyRealEntity"] == nil) { NSEntityDescription *newEntity = [entity copy]; [mergedModelEntities addObject:newEntity]; [newEntity release]; } else { // Ignore placeholder. } } } [mergedModel setEntities:mergedModelEntities]; return mergedModel; } </code></pre> <p>This works because copying of <code>NS*Description</code> objects in Core Data is by-name rather than by-value with respect to a relationship's destination entity and inverse (and to an entity's subentities as well). Thus while a model is mutable — that is, before it's set as the model for an <code>NSPersistentStoreCoordinator</code> — you can use tricks like this to break your model into multiple models.</p>