Apple 将故障描述为 partially materialized futures ,这与多个数据库中使用的术语 partially materialized views 非常相似。对我来说,单词部分意味着该对象的某些字段已初始化(已实现)而有些则未初始化。但苹果将故障描述为:
A managed object fault is an instance of the appropriate class, but its persistent variables are not yet initialized.
有没有办法部分实现故障?例如。我有 10 个字段的对象,我想要一个仅实现两个字段的部分对象,而整个对象仍然是错误的(因此所有其他字段仍然为零)。我不是在谈论 NSFetchRequest 的 propertiesToFetch 而是在谈论所谓的部分错误。
因为目前当故障被触发时,所有属性都已实现。这是来自文档的引用:
If you access a property on the Department object — its name, for example — the fault fires and Core Data executes a fetch for you to retrieve all of the object's attributes
如何自定义故障实现?
Best Answer-推荐答案 strong>
我不相信有办法做到这一点。当核心数据加载 managedObject 时,它会加载所有内容。您可以在 NSMangedObject 的界面中看到它有一个 isFault 属性,该属性为真或假。
如果您有一个非常大的属性(例如数据 block )并且除非需要,否则不想加载它,那么我建议将其存储为具有关系的单独实体。这样,它只会在您请求属性时加载(故障)。
关于ios - 将 NSManagedObject 变成部分错误,其中一些字段为 nil,而另一些则不是,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/44155786/
|