使用Fluent Nhibernate使用参数映射nhibernate自定义类型

我有一个nhibernate自定义类型,我想用Fluent NHibernate映射.

HBM映射看起来像这样.

<property name="DateConvention" access="nosetter.camelcase-underscore" column="date_convention" not-null="true">
  <type name="DataAccess.Types.DateConventionCustomType, Services.DataAccess">
    <param name="type">Services.Data.DateConventionTypeParameter, Services.Data</param>
  </type>
</property>

我已成功映射自定义类型,但我找不到在自定义类型映射上配置参数的方法.

有没有办法使用流利的nhibernate来映射这个?

最佳答案 Fluent NHibernate不公开此功能,但您可以将hbm.xml文件用于需要它的映射,并使用ClassMap来完成剩下的工作.

点赞