在nhibernate-mapping中设置默认值

时间:2011-08-04 06:37:34

标签: .net mysql nhibernate nhibernate-mapping default

我想在映射中设置默认值。当我运行它说“默认”没有声明。

我的代码是

<property name="retrycount" column="retrycount" type="Int32" default="0" />

这是否支持nhibernate

谢谢

1 个答案:

答案 0 :(得分:12)

支持:

<property name="retrycount" type="Int32">
  <column name="retrycount" default="0"/>
</property>