Im trying to do a search for a child entity based on a field "guid". The guid field is defined in the parent entity. I would like to find the child instance whos guid is equal to some value i pass in but it always returns a result of 0 values. Im assuming core data isn't seeing the guid property since its defined in the parent entity.
Here is my predicate:
NSFetchRequest *request = [[NSFetchRequest alloc] init];
[request setEntity:[NSEntityDescription entityForName:CHILD_ENTITY inManagedObjectContext:managedObjectContext]];
[request setPredicate:[NSPredicate predicateWithFormat:@"(guid like '%@')", guid]];
NSError *error = nil;
NSArray *results = [managedObjectContext executeFetchRequest:request error:&error];
if (results != nil && results.count > 0)
return YES;
else
return NO;
Is my predicate format wrong?