我想在映射中设置默认值。当我运行它说“默认”没有声明。
我的代码是
<property name="retrycount" column="retrycount" type="Int32" default="0" />
这是否支持nhibernate
谢谢
答案 0 :(得分:12)
支持:
<property name="retrycount" type="Int32">
<column name="retrycount" default="0"/>
</property>