我有一个名为Delivery
的对象,它有一组与之关联的Customer
个对象。每个Delivery对象还存储mainCustomerId
NSNumber*
。我有一个NSFetchedResultsController,用于管理UITableView
的数据源。问题是我想通过Customer的lastName字段对NSFetchedResultsController进行排序(客户再次存储在customers
对象上名为Delivery
的多对多关系中),其中一个客户在该集合的customerId等于Delivery的MainCustomerId。
交货类看起来像这样(只有相关部分)
@interface Delivery : NSManagedObject
@property (nonatomic, retain) NSNumber * mainCustomerId;
@property (nonatomic, retain) NSSet *customers;
@end
客户类看起来像这样
@interface Customer : NSManagedObject
@property (nonatomic, retain) NSNumber * customerId;
@property (nonatomic, retain) NSString * lastName;
// And the inverse relationship to the deliveries
@property (nonatomic, retain) NSSet *deliveries;
@end
我需要创建一个类似这样的NSSortDescriptor(注意,我知道这是错误的格式并且不起作用。我希望它能传达这个想法)
NSSortDescriptor *sortDescriptor = [[NSSortDescriptor alloc] initWithKey:@"customers.AnyobjectInSet.lastName WHERE AnyobjectInSet.customerId == masterCustomerId ascending:YES];
我已经尝试了几个使用子查询和NSExpressions的东西,但总是很短,因为我不能使用任何使用Cocoa的功能(比如使用@selector进行排序),因为它必须能够生成一个没有Cocoa的真正的mysql查询处理数据。但我觉得必须要做到这一点,因为它在mysql中是一个简单的查询。
select * from Delivery JOIN Customer ON Customer.customerId=Delivery.mainCustomerId ORDER BY Customer.lastName;
我试图避免在获取结果后进行排序并将排序顺序存储回对象(这很容易,但我觉得这是错误的解决方案,因为我选择了相关数据。必须是一种排序方式)。任何帮助都会受到超级赞赏。
提前致谢。
答案 0 :(得分:2)
好吧也许我错过了一些东西,但谓词建议对我来说非常有意义。如果我错了,请纠正我,但(假设你知道mainCustomerID):
NSNumber *mainCustomerID = ...
NSPredicate *predicate = [NSPredicate predicateWithFormat:@"customerID == %@", mainCustomerID];
NSSortDescriptor *sortDescriptor = [NSSortDescriptor sortDescriptorWithKey:@"lastName" ascending:YES];
NSFetchRequest *request = [NSFetchRequest fetchRequestWithEntityName:@"Customer"];
[request setPredicate:predicate];
[request setSortDescriptors:@[ sortDescriptor ]];
NSFetchedResultsController *controller = [[NSFetchedResultsController alloc] initWithFetchRequest:request ...
所以基本上如果不清楚,这将获取customerID等于mainCustomerID的所有Customer记录,然后按lastName对这些结果进行排序。这将在内部生成SQL语句,以便为您执行此操作。
这不是你想要做的吗?
此外,如果您想查看CoreData在运行时生成的SQL(有用的调试工具),请打开您的方案并转到“参数”选项卡,并将以下内容添加到“启动时传递的参数”中:
-com.apple.CoreData.SQLDebug 1
快乐编码:)