设置谓词以在 Core Data 中搜索
我需要在 iPhone 应用程序中执行搜索核心数据实体。
在我的核心数据中,我有一个实体“myEntity”,它有两个属性“stringOne”和“stringTwo”;两者都定义为 NSString。
NSPredicate *predicate = [NSPredicate predicateWithFormat:@"stringOne contains[cd] %@", self.keyword4Search];
[fetchRequest setPredicate:predicate];
我上面的代码仅搜索 stringOne 中包含 keywords4Search 的实体。
我需要的是搜索 [stringOne OR stringTwo] 中包含 keywords4Search 的实体。
我想
predicateWithFormat:@"stringOne or stringTwo contains[cd] %@", self.keyword4Search];
我应该看哪里?
I need to perform search Core Data entities in my app for iPhone.
In my Core Data I have an entity 'myEntity', that has two properties 'stringOne' and 'stringTwo'; both defined as NSString.
NSPredicate *predicate = [NSPredicate predicateWithFormat:@"stringOne contains[cd] %@", self.keyword4Search];
[fetchRequest setPredicate:predicate];
My code above only search entities that contains keyword4Search in stringOne only.
What I need is to search entities that contains keyword4Search in [stringOne OR stringTwo].
I expect kind of
predicateWithFormat:@"stringOne or stringTwo contains[cd] %@", self.keyword4Search];
where should I look?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)