如何获取没有相关(通过特定关系)实体的对象。

时间:2012-08-18 10:45:26

标签: ios cocoa-touch core-data

我想从没有相关对象的实体中获取所有对象(使用特定的键路径) 我正在考虑使用count,但不知道如何实现它。

1 个答案:

答案 0 :(得分:1)

如果搜索谓词是1:1关系,请尝试使用以下搜索谓词:

[NSPredicate predicateWithFormat:@"relationshipName = NULL"];

和1:n关系:

[NSPredicate predicateWithFormat:@"relationshipName.@count == 0"]