如何刷新基于_id(非瞬态)的关系与获取不同步的对象
Posted
技术标签:
【中文标题】如何刷新基于_id(非瞬态)的关系与获取不同步的对象【英文标题】:How to refresh relationships based on _id (none-transient) with objects fetched out of sync 【发布时间】:2013-07-04 21:19:27 【问题描述】:我有以下型号:
@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"];
但是,有时制造商可能没有在模型之前获取,因此一旦 getObjectsAtPathgetObjectsAtPath strong> 通话完成。由于我将制造商 ID 设为非瞬态,因此我仍将其存储。那我该如何更新关系呢?
一种可能性是在获取制造商后获取模型。但是,我还有其他更复杂的对象,这种方法不起作用且效率不高。如何根据该 ID 关联 CoreData 中的关系?!
非常感谢!
【问题讨论】:
【参考方案1】:您建议的解决方案是正确的,您只想选择如何预测您的提取,以便只返回未连接的模型。如果要处理大量项目,您还可以批量获取、更新和保存。在这种情况下,无法让 Core Data 或 RestKit 为您建立关系。
【讨论】:
以上是关于如何刷新基于_id(非瞬态)的关系与获取不同步的对象的主要内容,如果未能解决你的问题,请参考以下文章
如何处理 Findbugs“可序列化类中的非瞬态不可序列化实例字段”?
HIbernate - 对象引用未保存的瞬态实例 - 在刷新之前保存瞬态实例