NHibernate有一个“Serializable”类型
<property name="PropertyName" column="ColumnName" type="**Serializable**" />
在Fluent NHibernate中是否有内置类型?
像
这样的东西Map(x => x.PropertyName).CustomType<**SerializableType**>();
...
答案 0 :(得分:2)
地图(c =&gt; c.PropertyName).CustomType(“serializable”);
答案 1 :(得分:0)
Map(c => c.PropertyName).CustomType<NHibernate.Type.SerializableType>()
似乎这样做