创建谓词来测试关系数

发布于 2024-11-16 10:46:38 字数 235 浏览 2 评论 0原文

假设我在核心数据中有一个业务对象。业务对象可能有也可能没有电话。

我想创建一个 NSPredicate 对象,其中只有拥有电话的企业才可以工作。

我该怎么做呢?

    NSPredicate * thePredicate5= [NSPredicate predicateWithFormat: @"Phones.count > 0"];

或者什么?

Say I have a Business object in core data. The Business object may or may not have phones.

I want to create an NSPredicate object where only Businesses with Phones would work.

How would I do so?

    NSPredicate * thePredicate5= [NSPredicate predicateWithFormat: @"Phones.count > 0"];

or what?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

阳光下的泡沫是彩色的 2024-11-23 10:46:38
NSPredicate * thePredicate5= [NSPredicate predicateWithFormat:@"NONE Phones == nil"];

或者

NSPredicate * thePredicate5= [NSPredicate predicateWithFormat:@"ANY Phones != nil"];

当我第一次读到你的问题时我不知道答案,但它引起了我的注意。我阅读了文档并对我的一个项目(使用 Core Data 和 sqlite 的 iphone 应用程序)进行了一些实验,附加的代码似乎可以满足您的要求,但我不能保证它是正确的解决方案。

NSPredicate * thePredicate5= [NSPredicate predicateWithFormat:@"NONE Phones == nil"];

or

NSPredicate * thePredicate5= [NSPredicate predicateWithFormat:@"ANY Phones != nil"];

I didn't know the answer when I first read your question but it caught my attention. I read the documentation and did some experimenting on one of my projects (iphone app that uses Core Data and sqlite) and the attached code seems to do what you wanted, but I cannot guarantee that it is the correct solution.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文