Re: Core Data saving / Leopard / The temporary directory at ...

2008-10-21 Thread chaitanya pandit
Well i'm not a core data pro. but here is what i have observed with core data. If you create an entity and delete it after saving, the deleted entity will be shown in the [[[self managedObjectContext] deletedObjects]allObjects] array. But if you delete the entity immediately after creation

Re: Core Data saving / Leopard / The temporary directory at ...

2008-10-21 Thread Jonathan Freeman
Thanks Chaitanya, This sent me on the right path. I had implemented a custom remove on the children and was calling the MOC -deleteObject method to remove a child from MOC. The docs say this on the deletedObjects method: Discussion Note that the returned set does not necessarily include all

Core Data saving / Leopard / The temporary directory at ...

2008-10-20 Thread Jonathan Freeman
Hello all, I've got an odd saving issue that one of my beta users just found. I can replicate this on 10.5.5, and it's basically one cannot save a Core Data document with a specific series of events. I've done the google route and found a few other developers seeing this with no resolve. Any