hi there,
I just switched to Nhibernate2.1.0.4000 with Nfluent 1.0RTM and Linq To Nhibernate 1.0.0. since then while Calling Save some entity containing an byte[] array which is mapped to an image database field, it takes ages to finish under debugging in the VS2008 debugger.
public class Appendix
{
...
public virtual byte[] appendix { get; set; }
....
}
If I set the byte[] array to null its fast as aver. Also Outside VS 2008 its as fast as ever. I cannot change the database field type from image to something else, its a legacy db.
Is there a NH pattern how to handle(map) image MSSQLdatabase fields? did something change with the new NH version?
any hint is welcome!