Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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

share|improve this question

1 Answer

up vote 13 down vote accepted

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

share|improve this answer
1  
Could you post sample code????????? – Daniel Dolz Apr 25 '12 at 17:25

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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