CocoaDev

Edit AllPages

Core data appears to be orphaning detail records on a very simple Master->Detail type of data application. To verify what I was seeing, I built a very small, simple application as a Core Data Document based application. The model is simple:

Vehicle Object (year, make, model, nickname, etc) has a one-to-many relationship to the VehiclePicture object (picture name, imageData, sequence).

I set up the data model accordingly, including a cascading one-to-many from Vehicle to VehiclePicture, and an appropriate inverse relationship. ( by the way, this sample is only slightly more advanced than the one in the tutorial at http://developer.apple.com/cocoa/coredatatutorial/index.html )

When I run the application, and add a vehicle, then add VehiclePicture records, the records add to the data set just fine. However, when deleting the VehiclePicture objects, the only thing that appears to be happening is that the references in the Vehicle object to the VehiclePictures objects are removed. The VehiclePictures objects are remaining in the data file.

Is this a known behavior, or have I possibly set something up wrong? Copies of my data files follow:

Original file:

<?xml version=”1.0”?> <!DOCTYPE database SYSTEM “file:///System/Library/DTDs/CoreData.dtd”>

134481920 343C8D7F-A000-42C4-8463-43FA1E5EF3FB 102 manufacturer model name vehicle short name 2006

File with a few pictures added:

<?xml version=”1.0”?> <!DOCTYPE database SYSTEM “file:///System/Library/DTDs/CoreData.dtd”>

134481920 343C8D7F-A000-42C4-8463-43FA1E5EF3FB 104 picture_1 0 picture_2 picture name 0 manufacturer model name vehicle short name 2006

Data file after deleting the pictures:

<?xml version=”1.0”?> <!DOCTYPE database SYSTEM “file:///System/Library/DTDs/CoreData.dtd”>

134481920 343C8D7F-A000-42C4-8463-43FA1E5EF3FB 104 picture_1 0 picture_2 picture name 0 manufacturer model name vehicle short name 2006

You’ll see that the only thing different before and after the deletion is the deletion of the vehicle node’s attributes for the child-records’ refereces:

idrefs=”z104 z103”

Any clues? Thanks much.


Search the documentation for “delete rule”. Your relationship’s delete rule is most likely set to “nullify” rather than “cascade”.


It is set to Cascade for the Vehicle -> VehiclePIcture direction. Setting the inverse relationship (Picture -> Vehicle) to nullify or cascade appears to cause no difference in behavior. Having it cascade in child->parent direction doesn’t seem to make sense any way. I gotta believe I’m just missing something stupid somewhere along the line.


Well, yep… I was overlooking something. I felt like it had something to do with Interface Builder, and sure enough… in the Binding (apple-4) dialog under the ContentSet section, the “Deletes Objects on Remove” behavior check box was NOT clicked. Clicking this then rerunning all my tests showed proper activity. Thing is… I’m not sure why that isn’t ON by default. Ah well, another mystery solved, and another hours of research, testing and fooling around with it can now be put to bed. Sheesh!

Thanks again.