I don't think the class NSDeleteRequest exists, but I want it to.
I can make an NSPredicate and use NSFetchRequest to issue:
select * from foo where x=y
How can I issue:
delete from foo where x=y
?
The only way to delete 1000's of rows seems to be to fetch them, loop thru them, and call delete on each NSManagedObject. Is that right? Why can't I just issue 1 delete sql statement?