gpt4 book ai didi

iphone - 核心数据,尝试使用 NSPredicate 来过滤 toMany 关系集但得到 "to-many key not allowed here"错误

转载 作者:太空狗 更新时间:2023-10-30 03:39:08 25 4
gpt4 key购买 nike

这是我的模型: http://www.girardet.ch/model.png

我的目标是检索符合这些条件的所有报价单:

  • 属于特定主题:Themes的name_en属性
  • 按相关性排序
  • 按作者过滤(使用作者的别名属性)

这是我的代码:

NSFetchRequest *fetchRequest = [[NSFetchRequest alloc] init];
NSEntityDescription *entity = [NSEntityDescription entityForName:@"ThemeEntries" inManagedObjectContext:_context];
[fetchRequest setEntity:entity];

NSSortDescriptor *sortDescriptor1 = [[NSSortDescriptor alloc] initWithKey:@"relevancy" ascending:NO];
NSArray *sortDescriptors = [[NSArray alloc] initWithObjects:sortDescriptor1, nil];
[fetchRequest setSortDescriptors:sortDescriptors];

// predictate - filter
NSPredicate *predicate = [NSPredicate predicateWithFormat:@"theme.name_en=%@ AND quotes.author.alias=%@",@"mytheme", @"myauthor"];

[fetchRequest setPredicate:predicate];

我收到“此处不允许使用对多键”错误。

如果我改用这个谓词

NSPredicate *predicate = [NSPredicate predicateWithFormat:@"theme.name_en=%@, @"mytheme"];

它运作良好,我可以遍历我得到的 ThemeEntries 并得到我所有的引语……但它没有被作者过滤。

如何按作者过滤?

最佳答案

你的问题是你们中的一个键路径的关系是一对多的,对多的,谓词不知道哪个特定对象与哪个对象相关联。

你有 ThemeEntities<<-->>Quotes在每一端产生一个集合。 quotes.author.alias keypath 表示“一组引号实例,每个都链接到作者实例,而作者实例又具有别名属性。”谓词无法处理集合。

您需要使用子查询来跳转多对多键路径。子查询本质上是一个嵌套谓词,它搜索一个集合并返回与嵌套谓词匹配的另一组对象。子查询的文档很少,但它们具有以下形式:

SUBQUERY(collectionName,$collectionElementVariable,expression-with-$collectionElementVariable)

在这种情况下,您要查找具有作者关系且别名与提供的字符串匹配的任何引用实例。您的谓词需要如下所示:

@"theme.name_en=%@ AND (0!=SUBQUERY(quotes,$eachQuote,$eachQuote.author.alias=%@).@count)",@"mytheme", @"myauthor"

子查询说,“在引文集中,获取每个引文对象并测试其作者关系对象是否具有与‘myauthor’匹配的别名属性。计算具有该匹配的引文对象的数量。如果数量不是零,返回 TRUE。”

只要在一对多关系中遍历键路径,就需要使用子查询。

关于iphone - 核心数据,尝试使用 NSPredicate 来过滤 toMany 关系集但得到 "to-many key not allowed here"错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3644849/

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