CoreData通过其属性和关系比较两个NSManagedObjects

时间:2012-11-08 13:52:28

标签: iphone core-data

我有过滤器对象。它有几个属性和关系。如果没有具有相同属性的人,我想创建新的过滤器对象。关系。怎么做到这一点?

2 个答案:

答案 0 :(得分:1)

我会选择更通用的方法.. 我将获取对象的NSEntityDescriptions并使用该描述中的所有属性构建谓词。

所以... ..

- (void)insertIfUnique:(NSManagedObject*)obj inContext:(NSManagedObjectContext*)ctx {

NSMutableString *format = [NSMutableString string];

NSEntityDescription *desc = obj.entity;
NSArray *attrs = desc.attributeKeys;

for(NSString *attr in attrs) {
    if(format.length)
        [format appendString:@" AND "];
    [format appendFormat:@"%@==%@", attr, [obj valueForKey:attr]];
}

NSPredicate *p = [NSPredicate predicateWithFormat:format];
NSFetchRequest *f = [[NSFetchRequest alloc] initWithEntityName:desc.name];
f.predicate = p;
if([ctx countForFetchRequest:f error:nil]==0)
    [ctx insertObject:obj];

}

答案 1 :(得分:0)

您必须手动搜索CoreData以查找任何现有过滤器对象。如果未找到,您可以进行处理以创建新过滤器:

这是一个辅助函数

+(id)uniqueEntityfForName:(NSString *)name 
                withValue:(id)value 
                   forKey:(NSString *)key
   inManagedObjectContext:(NSManagedObjectContext *)context {

    NSFetchRequest *request = [[[NSFetchRequest alloc] init] autorelease];    
    request.entity = [NSEntityDescription entityForName:name inManagedObjectContext:context];
    request.predicate = [NSPredicate predicateWithFormat:[key stringByAppendingString:@" == %@"], value];
    NSArray *result = [context executeFetchRequest:request error:nil];

    id entity = [result lastObject];
    if (entity == nil) {
        entity = [NSEntityDescription insertNewObjectForEntityForName:name inManagedObjectContext:context];
        [entity setValue:value forKey:key];
    } else {
        entity = [result lastObject];
    }

    return entity;
}

我使用这样的方法:

SomeEntity *entity = [CDUtils uniqueEntityfForName:@"SomeEntity" withValue:@"foo" forKey:@"bar" inManagedObjectContext:context];

您可能必须定义自己的谓词。