悬赏园豆:5
[已解决问题]
解决于 2008-05-21 16:48
<P>在使用下面的自定义类的实例时中,如何获取be.Id的PropertyAttribute?? </P>
<P>BugETT be = new BugETT();</P>
<P> be.Id</P>
<P> /////////////////////////////////////////////</P>
<P> [ActiveRecord("TB_BUG")]<BR> public class BugETT<BR> {<BR> <BR> private Int32 m_Id;<BR> </P>
<P> public BugETT(){}</P>
<P><BR> [Property("BUG_ID")]<BR> public Int32 Id<BR> {<BR> get { return m_Id; }<BR> set { m_Id = value; }<BR> }</P>
<P>}</P>
问题补充:
确切的说,我想获得PropertyAttribute.Column,也就是下面"BUG_ID"