core dataLIKE [c]%@
和in之间的确切区别是什么?我想搜索一个应该与接收者完全匹配的字符串。例子 : = [c]%@
NSPredicate
NSArray *arrayNames = [context fetchObjectsForEntityName:NSStringFromClass([PatientFamilyMember class])
withSortColumn:nil withSortDescending:FALSE
withPredicate:@"patientID = %@ && firstName=[c]%@ && relationship=[c]%@ && lastName=[c]%@",
self.pfm.patientID, firstName, relationship, lastName];
这有效,但我不明白使用LIKE [c]
和之间的区别= [c]%@.