问题
I'm trying to setup my NSFetchRequest
to core data to retrieve the unique values for a specific attribute in an entity. i.e.
an entity with the following information:
name | rate | factor |
_______|______|________|
John | 3.2 | 4 |
Betty | 5.5 | 7 |
Betty | 2.1 | 2 |
Betty | 3.1 | 2 |
Edward | 4.5 | 5 |
John | 2.3 | 4 |
How would i set up the request to return an array with just: John, Betty, Edward?
回答1:
You should use the backing store to help you get distinct records.
If you want to get an array with just John, Betty, Edward here's how you do it:
NSFetchRequest *fetchRequest = [NSFetchRequest fetchRequestWithEntityName:@"MyEntity"];
NSEntityDescription *entity = [NSEntityDescription entityForName:@"MyEntity" inManagedObjectContext:self.managedObjectContext];
// Required! Unless you set the resultType to NSDictionaryResultType, distinct can't work.
// All objects in the backing store are implicitly distinct, but two dictionaries can be duplicates.
// Since you only want distinct names, only ask for the 'name' property.
fetchRequest.resultType = NSDictionaryResultType;
fetchRequest.propertiesToFetch = [NSArray arrayWithObject:[[entity propertiesByName] objectForKey:@"name"]];
fetchRequest.returnsDistinctResults = YES;
// Now it should yield an NSArray of distinct values in dictionaries.
NSArray *dictionaries = [self.managedObjectContext executeFetchRequest:fetchRequest error:nil];
NSLog (@"names: %@",dictionaries);
回答2:
You're trying to use Core Data like a procedural data base instead of as an object graph manager as the API intended, so you won't find an easy way to do this.
There isn't a straight forward way to do this in Core Data because Core Data is concerned with objects instead of values. Since managed objects are guaranteed to be unique, Core Data doesn't much care about each object's values or whether they are duplicates or some other object's values.
To find the unique values:
- Perform a fetch by specific value. That will give you an array of dictionaries with a key
name
and a value of the name string itself. - On the returned array in (1) use a set collection operator to return a set of unique values.
So, something like:
NSSet *uniqueNames=[fetchedNameDicts valueForKeyPath:@"@distinctUnionOfSets.name"];
... which will return a set of NSString objects all with a unique value.
回答3:
Give a look at Fetching Specific Property Values, it's not necessary to use a Set to get distinct values.
来源:https://stackoverflow.com/questions/7000768/coredata-get-distinct-values-of-attribute