views:

1381

answers:

1

I have at my SQL Server 2000 Database a column with type Image. How can I map it into NHibernate?

+6  A: 

We used BinaryBlob on the mapping config file, and byte[] on the property.

Victor Rodrigues