4
我有一個具有多對子的父實體。如果我使用屬性(例如名稱)命令父提取,則一切正常。但是,如果我嘗試這樣做:具有多對多關係的NSSortDescriptor
NSSortDescriptor *sortDescriptor = [[NSSortDescriptor alloc] initWithKey:@"[email protected]" ascending:NO];
它不起作用。我也嘗試添加
[fetchRequest setRelationshipKeyPathsForPrefetching:[NSArray arrayWithObject:[entityProperties objectForKey:@"child"]]];
但它沒有起作用。
我可以根據to-many排序嗎?@ count或者我需要添加一個屬性並在每次添加一個孩子時更新它?
謝謝。我感到困惑,因爲它聽起來像根據你在這裏給出的答案是可能的:http://stackoverflow.com/questions/2448252/core-data-nsfetchrequest-sorting-by-count-of-to-many-relationship – Adriana