请帮我将这个sql语句转换为谓词
SELECT path
FROM store
WHERE index=cnt
答案 0 :(得分:2)
NSFetchRequest *fetchRequest = [[NSFetchRequest alloc] init];
fetchRequest.entity = [NSEntityDescription entityForName:@"store" inManagedObjectContext:moc];
fetchRequest.predicate = [NSPredicate predicateWithFormat:@"index == %d", cnt]
然后你可以从你自己的NSManagedObject子类访问'path' 请告诉我们您的尝试,以便我们为您提供正确的答案 我想你需要在Coredata上寻找一些例子或教程。