我使用 core-data 和 hava 2 嵌入关系。我还有一个日历,我应该在选定的日期下载所有疾病的所有药物。我如何使用子查询或使用子查询来做到这一点?
Disease ->>Medicine->>Date
截图在这里http://savepic.ru/4608231.png
我可以搜索所有药物而不与疾病绑定吗?
NSFetchRequest *request = [[[NSFetchRequest alloc] init] autorelease];
[request setEntity:[NSEntityDescription entityForName:@"MyMedicine" inManagedObjectContext:objectContext]];
[request setSortDescriptors:[NSArray initWithObject:[[NSSortDescriptor alloc] initWithKey:@"firstName" ascending:YES]];
[request setPredicate:[NSPredicate predicateWithFormat:@"(data == %@)", currentData]];