我有以下数据的NSFetchRequest(在NSFetchedResultsController中执行):

Person (one-to-many) Encounter


遇到一个int字段“类型”。在我的tableView中,我想显示:

Person A - Encounter of type 1
Person A - Encounter of type 2
Person B - Encounter of type 1


就是说,对于一个人,我只想要每种类型的一个count。有没有办法在核心数据查询中做到这一点?我可以使用代码来过滤NSFetchRequest的结果,但是后来我无法使用NSFetchedResultsController。

[编辑]

这是我目前正在尝试的代码。结果是一个人的多个遇到类型相同的人。

NSFetchRequest *fetchRequest = [[NSFetchRequest alloc] init];
// entity
NSEntityDescription *entity = [NSEntityDescription entityForName:@"Encounter" inManagedObjectContext:self.managedObjectContext];
[fetchRequest setEntity:entity];

// return distinct
NSDictionary *entityProperties = [entity propertiesByName];
[fetchRequest setPropertiesToFetch:[NSArray arrayWithObjects:
                                    [entityProperties objectForKey:@"person"],
                                    [entityProperties objectForKey:@"type"],
                                    nil]];
[fetchRequest setReturnsDistinctResults:YES];

[fetchRequest setResultType:NSDictionaryResultType];

NSError *error;
NSArray *fetchedObjects = [self.managedObjectContext executeFetchRequest:fetchRequest error:&error];

for (NSDictionary *d in fetchedObjects) {
    NSLog(@"NSDictionary = %@", d);
}

[fetchRequest release];

最佳答案

我假设您只想为每种类型的Encounter返回一个记录,即使一个人有多个给定类型的一个。您可以通过相应地调整NSFetchRequest来完成此操作:

[fetchRequest setReturnsDistinctValues:YES];

关于ios - ios:NSFetchRequest和过滤,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/7128014/

10-12 16:17