是否可以在NSPredicate中使用嵌套的SUBQUERY? [英] Is it possible use nested SUBQUERY in NSPredicate?

查看:144
本文介绍了是否可以在NSPredicate中使用嵌套的SUBQUERY?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如您所见,我有两个一对多的关系.是否可以在我要选择所有A的情况下编写这样的嵌套子查询,其中所有属于A的B下的所有C-s都满足特定条件?

As you can see I have two one-many relationships. Is it possible to write such a nested SUBQUERY where I want to select all A, where any of the belonging C-s under any of belonging B to A satisfy a certain condition?

推荐答案

您可以将SUBQUERY嵌套在谓词中.但是,这里似乎只有一个子查询就足够了(例如,如果ds是从CD一对一关系)

You can nest SUBQUERY in a predicate. But it seems that a single SUBQUERY is sufficient here (if ds is a to-one relationship from C to D), for example

[NSPredicate predicateWithFormat:@"SUBQUERY(bs, $x, ANY $x.cs.ds.name = %@).@count > 0", name];

这篇关于是否可以在NSPredicate中使用嵌套的SUBQUERY?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆