在一对多关系中获取对象时的谓词问题

发布于 2024-10-16 06:23:26 字数 416 浏览 7 评论 0原文

我有一个简单的情况,我有两个与多对多关系相关的实体。

两个对象,警报和标签。当我想获取与给定标签关联的所有警报时,我尝试了以下操作:

NSPredicate *predicate = [NSPredicate predicateWithFormat:@"%@ IN tags", theTag];   

我得到的是所有警报,而不仅仅是与该标签相关的警报。

然而,尝试另一种方法是可行的:

NSPredicate *predicate = [NSPredicate predicateWithFormat:@"SELF in %@", theTag.alarms];

由于与代码重用有关的复杂原因,我确实需要第一个方法来工作。任何帮助将不胜感激!谢谢!

I have a simple situation where I have two entities related with Many-To-Many relationship.

Two objects, Alarms and Tags. When I want to fetch all the Alarms associated with a given Tag, I tried this:

NSPredicate *predicate = [NSPredicate predicateWithFormat:@"%@ IN tags", theTag];   

What I get is all Alarms, not just those related to the Tag.

However, trying this the other way around works:

NSPredicate *predicate = [NSPredicate predicateWithFormat:@"SELF in %@", theTag.alarms];

For complicated reasons having to do with code reuse, I really need the first one to work. Any help would be much appreciated! Thanks!

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

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

发布评论

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

评论(1

优雅的叶子 2024-10-23 06:23:26

如果您有一个 Tag 对象,那么您可以通过执行以下操作来获取其所有警报:

NSSet *alarms = [theTag alarms];

如果由于某种奇怪的原因您必须使用获取请求来执行此操作(您不应该这样做),您的谓词应该是:

NSPredicate *p = [NSPredicate predicateWithFormat:@"tags CONTAINS %@", theTag];

If you have a Tag object, then you can get all of its alarms by doing:

NSSet *alarms = [theTag alarms];

If for some bizarre reason you have to do this with a fetch request (which you shouldn't), your predicate should be:

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