我在 Power Designer 中有一个实体对象并遍历它的继承,但我不知道如何获取子对象。有人可以发布示例代码吗?获取继承的对象 ID 也很重要。
编辑:基于帕斯卡示例的解决方案理念:
foreach (PdCDM.Inheritance curPDInheritance in curPDEntity.InheritedBy){
foreach(PdCDM.InheritanceLink curPDInheritanceLink in curPDInheritance.InheritanceLinks){
Console.WriteLine(curPDEntity.Name + " parent of " + ((PdCDM.Entity)curPDInheritanceLink.ChildEntity).Name+ " through " + curPDInheritance.Name + " (" + curPDInheritance.ObjectID + ")");
}
}