创建谓词来测试关系数
假设我在核心数据中有一个业务对象。业务对象可能有也可能没有电话。
我想创建一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
或者
当我第一次读到你的问题时我不知道答案,但它引起了我的注意。我阅读了文档并对我的一个项目(使用 Core Data 和 sqlite 的 iphone 应用程序)进行了一些实验,附加的代码似乎可以满足您的要求,但我不能保证它是正确的解决方案。
or
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.