Is it possible use nested SUBQUERY in NSPredicate?(是否可以在 NSPredicate 中使用嵌套的 SUBQUERY?)
问题描述
如您所见,我有两个一对多的关系.是否可以编写这样一个嵌套的子查询,我想选择所有 A,其中任何属于 A 的 B 下的任何属于 C 满足特定条件?
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.但是这里似乎单个 SUBQUERY 就足够了(如果 ds
是从 C
到 D
to-one 关系>),例如
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?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:是否可以在 NSPredicate 中使用嵌套的 SUBQUERY?


- 想使用ViewPager,无法识别android.support.*? 2022-01-01
- Android - 我如何找出用户有多少未读电子邮件? 2022-01-01
- 用 Swift 实现 UITextFieldDelegate 2022-01-01
- Android viewpager检测滑动超出范围 2022-01-01
- MalformedJsonException:在第1行第1列路径中使用JsonReader.setLenient(True)接受格式错误的JSON 2022-01-01
- 使用自定义动画时在 iOS9 上忽略 edgesForExtendedLayout 2022-01-01
- 在测试浓缩咖啡时,Android设备不会在屏幕上启动活动 2022-01-01
- android 4中的android RadioButton问题 2022-01-01
- Android - 拆分 Drawable 2022-01-01
- 如何检查发送到 Android 应用程序的 Firebase 消息的传递状态? 2022-01-01