up vote 0 down vote favorite
share [g+] share [fb]

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**>();

??

link|improve this question
feedback

2 Answers

up vote -1 down vote accepted
Map(c => c.PropertyName).CustomType<NHibernate.Type.SerializableType>()

seems to do it

link|improve this answer
Nice! Silly me, I should have tried that, but I guess I thought there was an equivalent in the Fluent project. – noah Jan 4 '10 at 17:45
Compiles but throws Exception @ runtime – statichippo Jan 20 '10 at 16:01
@statichippo - is the type of property [Serializable]? – David Kemp Jan 20 '10 at 16:21
feedback

Map(c => c.PropertyName).CustomType("serializable");

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.