通过模型获取NHibernate XML映射属性?

时间:2012-10-12 14:18:42

标签: c# nhibernate nhibernate-mapping

如果我有一个带小数属性的模型:

<property name="Prop" column="prop" type="decimal" 
 precision="19" scale="4" not-null="true" />

是否可以在不解析HBM的情况下在C#中获取precisionscale属性?

1 个答案:

答案 0 :(得分:0)

ISessionFactory.GetClassMetadata()。查看返回IClassMetadata中的PropertyNames和PropertyTypes。