1

我有以下模型:

@interface EquipmentModel : NSManagedObject

@property (nonatomic, retain) NSDate * creationDate;
@property (nonatomic, retain) NSString * desc;
@property (nonatomic, retain) NSNumber * identifier;
@property (nonatomic, retain) NSDate * lastModifiedDate;
@property (nonatomic, retain) NSString * name;
@property (nonatomic, retain) NSNumber * manufacturerID;
@property (nonatomic, retain) Manufacturer *manufacturer;

我使用 RESTKit 和以下映射来获取该对象:

RKEntityMapping *equipmentModelMapping = [RKEntityMapping mappingForEntityForName:@"EquipmentModel" inManagedObjectStore:managedObjectStore];
equipmentModelMapping.identificationAttributes = @[@"identifier"];
[equipmentModelMapping addAttributeMappingsFromDictionary:@{
 @"id": @"identifier",
 @"description": @"desc",
 @"manufacturer_id": @"manufacturerID",
 @"creation_date": @"creationDate",
 @"last_modified_date": @"lastModifiedDate",
 }];
[equipmentModelMapping addAttributeMappingsFromArray:@[ @"name"]];
[equipmentModelMapping addConnectionForRelationship:@"manufacturer" connectedBy:@{ @"manufacturerID": @"identifier"}];

但是,有时可能在模型之前未获取制造商,因此一旦getObjectsAtPath调用完成,模型的“制造商”关系将等于 nil 。由于我将制造商 ID 设为非瞬态,因此我仍将其存储。那我该如何更新关系呢?

一种可能性是在获取制造商后获取模型。但是,我还有其他更复杂的对象,这种方法不起作用且效率不高。如何根据该 ID 链接 CoreData 中的关系?!

非常感谢!

4

1 回答 1

0

您建议的解决方案是正确的,您只想选择如何预测您的提取,以便只返回未连接的模型。如果要处理大量项目,您还可以批量获取、更新和保存。在这种情况下,没有办法让 Core Data 或 RestKit 为您建立关系。

于 2013-07-05T07:35:34.420 回答