谓词的未实现的SQL生成

谓词的未实现的SQL生成

本文介绍了核心数据谓词:谓词的未实现的SQL生成的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

基本上,我在我的数据模型中有3个实体:品牌,模型和修剪。

Basically I got 3 entities in my data model : Brand, Model and Trim.


  • 一个品牌有一对多与模型的关系称为模型。 (一个品牌有多个型号,但一个型号只有一个品牌)

  • 一个模型与Trim有多对多关系,称为trims。 (模型可以有多个修剪,修剪可以有多个模型)

有一个修剪对象数组,我想

Having an array of trims objects, I would like to get all the brands having a model which "contains" at least one trim contained inside this array.

所以这里是我的fetch请求的谓词:

So here is my predicate for the fetch request :

NSFetchRequest *request = [[NSFetchRequest alloc] initWithEntityName:@"Brand"];
[NSPredicate predicateWithFormat:@"ANY models.trims IN %@", arrayOfTrims];

这里是我得到的错误:

*** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: 'unimplemented SQL generation for predicate : (ANY models.trims IN {<Trim: 0x8e60340> (entity: Trim; id: 0x8e62f10 <x-coredata://BCD28560-AED5-4409-9A35-1925001773E6/Trim/p8>

我对Core Data有点新,我不知道我做错了什么。

I'm kinda new to Core Data and I have no idea what I'm doing wrong.

希望有人能帮助你,

感谢很多。

推荐答案

核心数据谓词中的ANY
由于您的查询涉及两个多对多关系,因此您必须使用SUBQUERY:

"ANY" in a Core Data predicate works only for a single to-many relationship.Since your query involves two to-many relationships, you have to use a SUBQUERY:

[NSPredicate predicateWithFormat:@"SUBQUERY(models, $m, ANY $m.trims IN %@).@count > 0",
    arrayOfTrims];

这篇关于核心数据谓词:谓词的未实现的SQL生成的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-29 13:39