NHibernate has a "Serializable" type
<property name="PropertyName" column="ColumnName" type="**Serializable**" />
Is there a built in type for this in Fluent NHibernate?
Something like
Map(x => x.PropertyName).CustomType<**SerializableType**>();
??