NSPredicate not working with calculated field
I have a Core Data project and am having difficulty searching the data with a simple calculated field and have no idea why it's not working. I have a Tutor entity, with core data string attributes "tutorFirstName" and "tutorLastName". I've created an additional string attribute "tutorFullName" which is populated in a Category as such: NSString *fullName = [@[self.tutorFirstName, self.tutorLastName] componentsJoinedByString:@" "]; The data is populated fine, but when I perform the following searches only the predicates on the tutorFirstName and tutorLastName work: NSPredicate *predicate =