Hi,
I've got...
Table1 which is referenced by Table2 and Table3.
In the designer I've made Table2 and Table3 sub-classes of Table1. What I would like to do is insert another abstract class (T0) inbetween T1 and T2 and T3. So the hierarchy would be...
T1
|
T0
| |
T2 T3
Is this possible? The tricky bit is that T0 does _not _correspond to a database table.
Cheers, Ian.