4
Fluent NHibernateでマップしたいnhibernateカスタムタイプがあります。Fluent Nhibernateを使用してパラメータで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を使ってこれをマップする方法はありますか?