当使用byte[]和varbinary(max)时,NHibernate中的图像损坏或截断

本文关键字:NHibernate 图像 损坏 byte max varbinary | 更新日期: 2023-09-27 18:18:21

我需要保存一个jpg图像到数据库在数据库中,此属性的类型为nvarchar(max)。所以我需要像这样序列化和反序列化这个属性:

 private byte[] HexStringToObject(string value)
    {
        SoapHexBinary shb = SoapHexBinary.Parse(value);
        return shb.Value;
    }
 private string ObjectToHexString(object value)
    {
        if (value == null)
            return "";
        SoapHexBinary shb = new SoapHexBinary((byte[])value);
        return shb.ToString();
    }

但是有一个问题,我不知道这个问题与序列化或反序列化方法有关当我想通过

查看这张图片时
 public FileResult Initialpicture(int? propertyId)
    {
        if (propertyId == null)
            return null;
        IProperty image = Repository<IProperty>.Get(propertyId);
        if (image.Value == null)
            return null;
        return File((byte[])image.Value, "image/jpg");//Get of Value use deserialize method to get byte[]

和在浏览器中,我只能看到一小部分的图像,和错误"图像损坏或截断:"}

有什么问题吗?

当使用byte[]和varbinary(max)时,NHibernate中的图像损坏或截断

可能您的数据库或ORM(如果您有)将截断字节数组,例如为12000字节。