I have Two models Department and Worker. Departments has to-many relationship(workers) to worker. Worker has firstName field. How can i get a worker list sorted by firstName by accessing departmet.workers? Is there any way to add sort descriptors in to-many relationship?
|
Minor improvement over Adrian Hosey's code: Instead of manually iterating over all workers you can also just do:
Probably does exactly the same thing as your iteration internally, but maybe they made it more efficient somehow. It's certainly less typing… Note: the above only works on iOS 4.0+ and OSX 10.6+. In older versions you need to replace the last line with:
|
|||||||||||||
|
|
To-many relationships in Core Data are modeled as unordered sets. However, you can create a fetched property on the Department entity that includes a sort descriptor or you can sort set in-memory within your application ( |
|||
|
|
You need to define your own method, such as sortedWorkers. Something like this:
|
|||
|
|
|
Hunter's code snip almost worked for me, except since "workers" is an NSSet, I had to load it into an NSMutableArray first:
|
|||
|
|
|
I notice that this is quite old, but people will still come across it (I did) Adrian Schönig's post was good. I found it useful for the basics but you have to do this sort every time you want to access the Set of workers. This is very inefficient! Instead what is better is to do the sort every time you insert a new object and then save that as the Set in CoreData. This means every time you call the CoreData the workers will be ordered. I did this for my system using a Category for the NSManagedObject (Worker+Methods.h). In here I have the init method for a new Worker
Obviously this is inefficient when you add lots of Workers, but you can just move [department orderWorkers]; to happen after all the workers are added. |
|||
|
|
|
Minor improvement over Adrian Schönig's solution: By now it's necessary to cast
|
|||
|
|
