gpt4 book ai didi

ios - 核心数据 : Query to one-to-many-to-many relationship

转载 作者:塔克拉玛干 更新时间:2023-11-02 08:15:30 26 4
gpt4 key购买 nike

我有一个这样的核心数据模型:

enter image description here

我正在尝试查询所有放映具有特定时间表的剧院的电影。

但我不知道如何使用 NSPredicate 进行查询。

我试过这个:

NSPredicate *moviesPredicate = [NSPredicate predicateWithFormat:@"SUBQUERY (movies, $x, $x.movies.showTimes == %@ AND  $x.movies.theater.nameOfTheater == %@).@count >0", showTime, theater];

但是没用。你们有谁知道我做错了什么吗?

非常感谢你的帮助

最佳答案

我根据您的既定目标(“...查询放映具有特定时间表的剧院的所有电影”)假设您的 NSFetchRequest 的实体是 Movies。如果是这样,您使用的属性和关系名称都应该与该实体相关。因此,剧院名称将由 theaters.nameOfTheater 给出,放映时间将为 showTimes.showTimes。因为给定的 Movie 有很多 Schedules,如果任何 showTimes.showTimes 符合您的要求,您的谓词就需要选择一部电影。因此,编写谓词的一种方法是:

NSPredicate *moviesPredicate = [NSPredicate predicateWithFormat:@"theaters.nameOfTheater == %@ AND (ANY showTimes.showTimes == %@)", theater, showTime];

或者,ANY 子句可以重写为 SUBQUERY:

NSPredicate *moviesPredicate = [NSPredicate predicateWithFormat:@"theaters.nameOfTheater == %@ AND SUBQUERY(showTimes, $x, $x.showTimes == %@).@count > 0", theater, showTime];

作为更广泛的建议,我将对您的属性和实体的名称进行一些更改;这将有助于使事情更清楚:

  1. 实体名称通常应为单数,因此 Movie 不是 MoviesTheatre 不是 Theatres安排而不是安排
  2. 同样,关系的名称应该反射(reflect)它们是一对一还是一对多。所以 Movie 实体应该有 theatre 关系,因为它是一对一的,而 Schedule 实体应该有 movies 关系,因为它是一对多的。

最后,我认为您可以改进您的数据模型。目前,每部电影只能有一个剧院。实际上,我可以想象一部电影将在多个影院放映!就个人而言,我会有这样的模型:

Data Model

所以每个 Schedule 只与一部 Movie 和一部 Theater 相关。但是每个 Theater 都有很多 showings,每个 Movie 都有很多 screening。使用此模型,满足您的查询的谓词将是:

NSPredicate *moviesPredicate = [NSPredicate predicateWithFormat:@"SUBQUERY(screenings, $x, $x.theater.nameOfTheater == %@ AND $x.showTime == %@).@count > 0", theater, showTime];

关于ios - 核心数据 : Query to one-to-many-to-many relationship,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30197628/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com