鉴于以下核心数据模型:
-> : to-one releationship
->>: to-many relationship
Entity A ->> Entity B
Entity B -> A // each B belongs to exactly one A
Entity B ->> B // a B can be related to other B's
所以在课堂上A
:
@property (nonatomic, retain) NSSet *Bs;
在课程B
中:
@property (nonatomic, retain) A *A;
@property (nonatomic, retain) NSSet *Bs;
假设我的NSArray *myArray
包含(Bj, Bk)
。
我想要的是获取属于B
且与Ax
和Bj
相关的所有Bk
:
下面的代码有效,但完全是丑陋的,因为我必须根据数组中B
的数字(这里是2,但可能是10左右)对NSPredicate进行硬编码:< / p>
NSEntityDescription *fetchedEntity = [NSEntityDescription entityForName:@"B" inManagedObjectContext:self.managedObjectContext];
[NSPredicate predicateWithFormat:@"A == %@ and (Bs contains %@) and (Bs contains %@)", Ax, [myArray objectAtIndex:0], [myArray objectAtIndex:1]];
如何重写谓词以使其更通用?它必须如此明显,但我只是看不到它......
答案 0 :(得分:2)
确实
[NSPredicate predicateWithFormat:@"A==%@ AND (ALL %@ IN Bs)", Ax, myArray];
做你期望的事吗?我不确定(并且远离我的OS X框)这个谓词是否可以转换为SQL的Core Data SQLite引擎。您可能需要SUBQUERY表达式:
[NSPredicate preidcateWithFormat:@"A==%@ and SUBQUERY(Bs, $x, $x IN %@).@count == %d", Ax, myArray, myArray.count];
这假定myArray
中的项目是唯一的。