5

我有这样的要求:

NSPredicate *predicate = [NSPredicate predicateWithFormat:@"ANY attributes.attribute.attributeId IN %@", attributeIds];

这将返回一个对象列表,这些对象具有我设置的一个或多个属性。我想获取具有我传递的所有属性的对象列表,所以我尝试了:

NSPredicate *predicate = [NSPredicate predicateWithFormat:@"ALL attributes.attribute.attributeId IN %@", attributeIds];

但我有一个例外:

'NSInvalidArgumentException', reason: 'Unsupported predicate (null)'

无论如何,我什至不确定这是正确的要求。假设我有 at 属性列表:[red, green, blue]我怎样才能获得至少具有这些属性的所有对象?

* Object_1 (red, green, blue)
* Object_2 (red, green, blue, yellow, brown)
* Object_3 (red, green blue, black, brown)

但不是Object_4 (red, green, yellow)因为它没有blue属性(请注意,我的ANYfetch 请求得到了所有 4 个对象,正如预期的那样)

编辑,相关问题:如果我想要完整匹配怎么办?所以对于[red, green, blue]我只会得到Object_1


编辑2:我设法回答了这两个问题,但我有一个新问题

4

1 回答 1

6

获取列表中至少具有所有属性的所有对象

NSPredicate *objectsThatContainsAtLeastAllAttributesInList =
    [NSPredicate predicateWithFormat:
        @"SUBQUERY(attributes, $s, $s.attribute.attributeId IN %@).@count == %d", attributeIds, [attributeIds count]];    

获取仅具有列表中属性的所有对象

NSPredicate *objectsWhoseAttributesAreInList =
    [NSPredicate predicateWithFormat:
        @"attributes.@count == %d AND SUBQUERY(attributes, $s, $s.attributes.id IN %@).@count == %d", [attributeIds count], attributeIds, [attributeIds count]];
于 2012-07-07T11:35:35.930 回答