在使用下面的自定义类的实例时中,如何获取be.Id的PropertyAttribute??
确切的说,我想通过be.Id获得下面的"BUG_ID" ,也就是PropertyAttribute.Column
BugETT be = new BugETT();
be.Id
/////////////////////////////////////////////
[ActiveRecord("TB_BUG")]
public class BugETT
{
private Int32 m_Id;
public BugETT(){}
[Property("BUG_ID")]
public Int32 Id
{
get { return m_Id; }
set { m_Id = value; }
}
}