我有两个实体,一个叫做Game
(它有一个叫做synchronized
的布尔属性),另一个叫做Coupon
(它有一个叫做won
的布尔属性)Game
和Coupon
通过一对一关系连接起来,称为hasCoupon
。
我要取所有有synchronized = false
和won = true
的游戏。
最佳答案
NSPredicate(format: "synchronized = false && hasCoupon.won = true")
关于ios - NSPredicate一对一关系,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/29800799/