Sql 2008 Filestream with NHibernate
问题 I am attempting to use Filestream in sql server 2008 to store user uploaded images. My problem is that NHibernate will not error, but it also will not save the data into the database. No record is created. The Image class below is a custom class (not to be confused with System.Drawing.Image) public class ImageMap : ClassMap<Image> { public ImageMap() { WithTable("Images"); Id(x => x.ImageId).GeneratedBy.GuidComb().WithUnsavedValue(Guid.Empty); Map(x => x.ImageData); Map(x => x.Extension);