11

我有一个 iPhone 应用程序,它使用多对多关系将标签和注释链接在一起。我目前正在使用 Core Data 的“关系”功能来实现这一点,但想迁移到使用连接表来代替。

这是我的挑战:我想从旧模型迁移到连接表模型,我需要弄清楚如何执行该数据迁移。

有没有很好的例子说明如何做到这一点?

更新:我在这里澄清我的问题以帮助解决这里发生的事情:我想尝试使用Simperium来支持我们的应用程序,但 Simperium 不支持多对多关系(!)。

作为我正在尝试做的一个例子,让我们以 iPhoneCoreDataRecipes 应用程序为例。

这是我的核心数据方案目前的样子: 在此处输入图像描述

...这就是我要过渡到的内容: 在此处输入图像描述

我如何从一个到另一个,并随身携带数据?

众所周知,Apple 的核心数据迁移文档很少,而且我没有看到任何有用的演练来使用 NSEntityMapping 或 NSMigrationManager 子类来完成工作。

4

2 回答 2

28

以下是基本流程:

  1. 创建数据模型的版本化副本。(选择模型,然后编辑器->添加模型版本)

  2. 对数据模型的新副本进行更改

  3. 将新数据模型的副本标记为当前版本。(单击顶级 xcdatamodel 项,然后在文件检查器中将“版本化数据模型”部分下的“当前”条目设置为您在步骤 1 中创建的新数据模型。

  4. 更新您的模型对象以添加 RecipeIngredient 实体。还将配方和成分实体上的成分和配方关系替换为您在步骤 2 中创建的新关系到 RecipeIngredient 实体。(两个实体都添加了这个关系。我叫我的 recipeIngredients)显然,无论您在旧代码中创建从成分到配方的关系,您现在都需要创建一个 RecipeIngredient 对象..但这超出了这个答案的范围。

  5. 在模型之间添加一个新映射(文件->新文件...->(核心数据部分)->映射模型。这将为您自动生成几个映射。RecipeToRecipe、IngredientToIngredient 和 RecipeIngredient。

  6. 删除 RecipeIngredient 映射。还要删除它为RecipeToRecipe 和IngredientToRecipe 提供的recipeIngredient 关系映射(或您在步骤2 中调用的任何内容)。

  7. 将 RecipeToRecipe 映射拖动到映射规则列表中的最后一个。(这很重要,以便我们确保在食谱之前迁移成分,以便我们在迁移食谱时可以将它们链接起来。)迁移将按照迁移规则列表的顺序进行。

  8. 为RecipeToRecipe映射“DDCDRecipeMigrationPolicy”设置自定义策略(这将覆盖Recipes对象的自动迁移并为我们提供一个可以执行映射逻辑的钩子。

  9. 通过将 NSEntityMigrationPolicy 子类化为 Recipes 来创建 DDCDRecipeMigrationPolicy 以覆盖 createDestinationInstancesForSourceInstance(请参阅下面的代码)。这将为每个食谱调用一次,这将让我们创建食谱对象,以及将其链接到成分的相关食谱成分对象。我们将让成分通过 Xcode 在步骤 5 中自动为我们创建的映射规则自动迁移。

  10. 无论您在何处创建持久对象存储(可能是 AppDelegate),请确保将用户字典设置为自动迁移数据模型:

if (![__persistentStoreCoordinator addPersistentStoreWithType:NSSQLiteStoreType 
      configuration:nil 
      URL:storeURL 
      options:[NSDictionary dictionaryWithObjectsAndKeys:[NSNumber numberWithBool:YES], NSMigratePersistentStoresAutomaticallyOption,  nil] 
      error:&error])
{
}

食谱的子类 NSEntityMigrationPolicy

#import <CoreData/CoreData.h>
@interface DDCDRecipeMigrationPolicy : NSEntityMigrationPolicy
@end

*覆盖 DDDCDRecipeMigrationPolicy.m 中的 createDestinationInstancesForSourceInstance *

- (BOOL)createDestinationInstancesForSourceInstance:(NSManagedObject *)sInstance entityMapping:(NSEntityMapping *)mapping manager:(NSMigrationManager *)manager error:(NSError **)error
{

    NSLog(@"createDestinationInstancesForSourceInstance : %@", sInstance.entity.name);

   //We have to create the recipe since we overrode this method. 
   //It's called once for each Recipe.  
    NSManagedObject *newRecipe = [NSEntityDescription insertNewObjectForEntityForName:@"Recipe" inManagedObjectContext:[manager destinationContext]];
    [newRecipe setValue:[sInstance valueForKey:@"name"] forKey:@"name"];
    [newRecipe setValue:[sInstance valueForKey:@"overview"] forKey:@"overview"];
    [newRecipe setValue:[sInstance valueForKey:@"instructions"] forKey:@"instructions"];

    for (NSManagedObject *oldIngredient in (NSSet *) [sInstance valueForKey:@"ingredients"])
    {
        NSFetchRequest *fetchByIngredientName = [NSFetchRequest fetchRequestWithEntityName:@"Ingredient"];
        fetchByIngredientName.predicate = [NSPredicate predicateWithFormat:@"name = %@",[oldIngredient valueForKey:@"name"]];

        //Find the Ingredient in the new Datamodel.  NOTE!!!  This only works if this is the second entity migrated.
         NSArray *newIngredientArray = [[manager destinationContext] executeFetchRequest:fetchByIngredientName error:error];

        if (newIngredientArray.count == 1)
        {
             //Create an intersection record. 
            NSManagedObject *newIngredient = [newIngredientArray objectAtIndex:0];
            NSManagedObject *newRecipeIngredient = [NSEntityDescription insertNewObjectForEntityForName:@"RecipeIngredient" inManagedObjectContext:[manager destinationContext]];
            [newRecipeIngredient setValue:newIngredient forKey:@"ingredient"];
            [newRecipeIngredient setValue:newRecipe forKey:@"recipe"];
             NSLog(@"Adding migrated Ingredient : %@ to New Recipe %@", [newIngredient valueForKey:@"name"], [newRecipe valueForKey:@"name"]);
        }


    }

    return YES;
}

我会在 Xcode 和示例 Xcode 项目中发布设置的图片,但我似乎还没有任何关于堆栈溢出的声誉点......所以它不会让我这样做。我也会把这个发布到我的博客上。bingosabi.wordpress.com/。

另请注意,Xcode Core Data 模型映射的东西有点不稳定,偶尔需要一个“干净的”、良好的 Xcode 恢复器、模拟器反弹或以上所有方法才能使其正常工作。

于 2012-07-02T23:13:16.760 回答
1

正如我在对该问题的评论中所建议的那样,您可能不想更改您的数据模型,而是在您的模型和不理解多对多关系的库之间建立一座桥梁。

您要创建的连接表实际上已经存在,您只需要另一种方式将数据呈现给该库。

这是否可行,取决于该库如何看待您的模型。它有多种方法可以查询您的实体的属性,或者您可能是指定要复制哪些属性/关系的人。

如果没有关于所有这些的任何细节,很难给出真正的答案,但总体思路是:

您有一些带有标题的托管对象,如下所示:

// Recipe.h

@interface Recipe : NSManagedObject
@property (nonatomic,retain) NSSet *ingredients;
@end

现在您使用一个类别向这个对象添加一些额外的方法:

// Recipe+fakejoin.h

@interface Recipe (fakejoin)
-(NSSet*)recipeIngredients;
@end

以及这个方法的一个实现,Recipe+fakejoin.m它返回一个NSSet带有对象的RecipeIngredients对象。

但正如我所说,如果这个库允许你像这样玩而不破坏东西,这是一个悬而未决的问题。如果这一切对您来说听起来很新鲜,最好找到另一个解决方案......

于 2012-06-29T01:41:19.583 回答