I have this mapping:
TZpiAlgorithmDef = class
[ManyValuedAssociation([TAssociationProp.Lazy], CascadeTypeAllRemoveOrphan, 'FAlgorithmDef')]
FParamDefs: Proxy<TList<TZpiAlgorithmParamDef>>;
...
end
var LAlgorithmDef: TZpiAlgoritmDef;
var LParamDef: TZpiAlgorithmParamDef;
LAlgorithmDef.ParamDefs.Remove(LParamDef);
ObjectManager.Update(LAlgorithmDef);
But it appears to me that the child record (LParamDef) is not removed from the database. Any heads up/advice?