映射到功能NHibernate序列化(Map to Serializable in Fluent N

2019-11-02 15:38发布

NHibernate的有一个“序列化”类型

<property name="PropertyName" column="ColumnName" type="**Serializable**"  />

有一个内置在功能NHibernate类型呢?

就像是

Map(x => x.PropertyName).CustomType<**SerializableType**>();

??

Answer 1:

Map(c => c.PropertyName).CustomType<NHibernate.Type.SerializableType>()

似乎这样做



Answer 2:

图(C => c.PropertyName).CustomType( “串行化”);



文章来源: Map to Serializable in Fluent NHibernate