Hi, I don't have any problems updating or deleting child objects on a parent object it the child object is a collection. I do have problems updating or deleting child objects on a parent object if the child object is simply an object and not a collection.
ex:
class classParent
{
prop1ChildList
}
vs.
class classParent
{
prop1ChildObj
}
classParent.delete();
classParent.Save();
In the 2nd ex. the save for the childObj doesn't happen.
Copyright (c) Marimer LLC