如何将此SQL查询转换为Core Data谓词

时间:2014-02-11 02:42:02

标签: ios

请帮我将这个sql语句转换为谓词

SELECT path 
FROM store
WHERE index=cnt

1 个答案:

答案 0 :(得分:2)

NSFetchRequest *fetchRequest = [[NSFetchRequest alloc] init];
fetchRequest.entity = [NSEntityDescription entityForName:@"store" inManagedObjectContext:moc];
fetchRequest.predicate = [NSPredicate predicateWithFormat:@"index == %d", cnt]

然后你可以从你自己的NSManagedObject子类访问'path' 请告诉我们您的尝试,以便我们为您提供正确的答案 我想你需要在Coredata上寻找一些例子或教程。