Does anyone know how to delete an object and all of it\'s related entities.
For example I have tables, Products, Category, ProductCategory and productDetails, the pr
It's worth noting that you need to ensure that objects are loaded for them to be deleted - I turned on Cascade but it didn't help until I had the required objects loaded (interestingly I also didn't need the Cascade turned on at all in my case). I've documented details on the post that helped me the most in tracking down the details Entity Framework delete child object