Hello,
v2.6 (ORMSupportclasses: 2.6.9.807)
There is a representation of my problem:
I have an entity employee that derive from an entity person (employee sub-type of person).
I have a relation between person and telephone (1-m with cascade-delete).
A person (Say "Joe") already exists with few telephone entity hooked to it (not yet an employee).
But Joe become an employee. I tried to create an employee, transfer every fields from person to joe and "Save". It returns true but fail to create my newly employee entity with existing person entity.
Can I do that (specialize an already existing person to an employee) without deleting the existing person ?
If yes, how ?
Thanks,
Eric
Note: I tried to force "IsNew" as false without success either.