我使用core-data和hava 2 embadded relationship to-many。我還有一個日曆,我應該在選定的日期下載所有疾病中的所有藥物。我如何使用子查詢或使用子查詢?如何使用子查詢或如何獲取數據
Disease ->>Medicine->>Date
截圖是這裏http://savepic.ru/4608231.png
我Couild搜索所有藥品不與疾病結合?
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]];
你可以給出核心數據模式的截圖嗎?它會消除很多猜測工作。 – Anupdas
我是。日期和時間也是日期的一部分。 – user2273459