Advertise Mobile SDKs Books Events Forum News Social Networking Support Us
Follow @iphonedevsdk on Twitter

Interface 2, Advanced iOS
Mockup & Code Gen
($9.99)

Make your own iPhone apps
and run them live!
(free)

Pic Frame Dynamo: Photo Editing
($0.99)

Abiliator
($1.99)

Want your application or service advertised on iPhone Dev SDK?

Go Back   iPhone Dev SDK Forum > iPhone SDK Development Forums > iPhone SDK Development

Reply
 
LinkBack Thread Tools Display Modes
Old 12-13-2010, 05:19 PM   #1 (permalink)
Registered Member
 
Join Date: Mar 2010
Posts: 43
mediatagging is on a distinguished road
Default Core Data: Non Duplicate Records

I'm running Core Data and would like to have my data set return distinct values

Below is my code:
Code:
 // Create the fetch request for the entity.
    NSFetchRequest *fetchRequest = [[NSFetchRequest alloc] init];
    // Edit the entity name as appropriate.
    NSEntityDescription *entity = [NSEntityDescription entityForName:@"Playlist" inManagedObjectContext:self.managedObjectContext];
	NSDictionary *entityProperties = [entity propertiesByName];

	[fetchRequest setEntity:entity];
	[fetchRequest setReturnsDistinctResults:YES];
	[fetchRequest setPropertiesToFetch:[NSArray arrayWithObject:[entityProperties objectForKey:@"name"]]];
It still returns duplicates. Any suggestions?

Thanks
mediatagging is offline   Reply With Quote
Old 12-14-2010, 03:46 AM   #2 (permalink)
Registered Member
 
Join Date: Mar 2010
Posts: 43
mediatagging is on a distinguished road
Default Solution

Quote:
Originally Posted by mediatagging View Post
I'm running Core Data and would like to have my data set return distinct values

Below is my code:
Code:
 // Create the fetch request for the entity.
    NSFetchRequest *fetchRequest = [[NSFetchRequest alloc] init];
    // Edit the entity name as appropriate.
    NSEntityDescription *entity = [NSEntityDescription entityForName:@"Playlist" inManagedObjectContext:self.managedObjectContext];
	NSDictionary *entityProperties = [entity propertiesByName];

	[fetchRequest setEntity:entity];
	[fetchRequest setReturnsDistinctResults:YES];
	[fetchRequest setPropertiesToFetch:[NSArray arrayWithObject:[entityProperties objectForKey:@"name"]]];
It still returns duplicates. Any suggestions?

Thanks

We need to make two changes:

1. [fetchRequest setResultType:NSDictionaryResultType];

This will return an array of dictionaries instead of a FetchedResultsController

Store the fetch into an NSArray.
mediatagging is offline   Reply With Quote
Reply

Bookmarks

Tags
core data, duplicate records

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On



» Advertisements
» Online Users: 385
9 members and 376 guests
chemistry, daudrizek, HemiMG, jeroenkeij, Kirkout, PavelMik, whitey99
Most users ever online was 1,387, 04-10-2012 at 04:21 AM.
» Stats
Members: 175,665
Threads: 94,120
Posts: 402,898
Top Poster: BrianSlick (7,990)
Welcome to our newest member, daudrizek
Powered by vBadvanced CMPS v3.1.0

All times are GMT -5. The time now is 02:58 AM.
Powered by vBulletin® Version 3.8.0
Copyright ©2000 - 2012, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.3.0