Core Data: Mass updates possible?
- by wgpubs
Is it possible to do mass updates on a given entity in Core Data?
Given an Person entity for example, can I do something like this:
Person.update(@"set displayOrder = displayOrder + 1 where displayOrder > 5")
Or is my only option to fetch all the entities needed and then loop through and update them individually???
Thanks