1. 程式人生 > >Mapping an NCLOB to a String property in NHibernate

Mapping an NCLOB to a String property in NHibernate

So I ran into an issue this evening where I needed to map a string property to a NCLOB column but I kept getting:

"ORA-01461: can bind a LONG value only for insert into a LONG column"

Turns out that you should set the column type to "AnsiString" as in:

<property name="Contents" column

="CONTENTS" type="AnsiString"/>

 

- Hope this helps someone else out.