在Devexpress中从Persistent Class中查找主键

时间:2012-02-10 09:07:05

标签: c# asp.net devexpress xpo

我在webapplication中添加了Persistent Class。它包含20个类..,

在我的Default.aspx.cs中,我想从Persistent类的所有类中获取主键名列表。我怎样才能找到它?

1 个答案:

答案 0 :(得分:2)

我以为你使用XPO:

foreach (XPClassInfo classInfo in xpoSession.Dictionary.Classes)
{
    Console.WriteLine(classInfo.FullName + "=" + classInfo.KeyProperty);
}

如果您有简单的主键,请使用classInfo.KeyProperty.Name获取其名称。