这是我的对象图的相关部分:
Store <-->> Gift <<--> Person <<-->> Tag
我希望能够通过tag.filtering属性过滤商店,如下所示:
ANY gifts.person.tags.filtering == YES
但我理解为什么这不起作用,因为对一对多键的限制。所以我试图使用一组嵌套的SUBQUERY谓词,如下所示:
NSPredicate* filterPredicate = [NSPredicate predicateWithFormat:
@"(0 != SUBQUERY(gifts, $x,
(0 != SUBQUERY($x.person.tags, $y, $y.filtering==YES).@count)).@count)"];
这在运行时因错误而失败:
"SQLite error code:1, 'no such column: t3.ZFILTERING'"
这似乎我在正确的轨道上,但是找不到任何其他使用相同语法的示例。我错过了什么?
答案 0 :(得分:7)
根据我上面的评论:
[NSPredicate predicateWithFormat:@"SUBQUERY(gifts, $x, ANY $x.person.tags.filtering == YES).@count != 0"]
工作,甚至比嵌套的SUBQUERY更简单。