我在webapplication中添加了Persistent Class。它包含20个类..,
在我的Default.aspx.cs中,我想从Persistent类的所有类中获取主键名列表。我怎样才能找到它?
答案 0 :(得分:2)
我以为你使用XPO:
foreach (XPClassInfo classInfo in xpoSession.Dictionary.Classes)
{
Console.WriteLine(classInfo.FullName + "=" + classInfo.KeyProperty);
}
如果您有简单的主键,请使用classInfo.KeyProperty.Name
获取其名称。