0

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

4

1 回答 1

1

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

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

对于 1:n 关系:

[NSPredicate predicateWithFormat:@"relationshipName.@count == 0"]
于 2012-08-18T11:06:06.220 回答