2011-12-17 71 views
2

我需要一個JPG圖像保存到數據庫 在這個屬性的數據庫類型是爲nvarchar(最大) 所以我需要序列化和反序列化這屬性是這樣的:圖像損壞或使用字節[]和varbinary(最大)時在NHibernate的截短

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[] 

和瀏覽器我只能看到圖像的一小部分,並且出現錯誤「Image corrupt or truncated:」 }

問題是什麼?

+2

nvarchar(max)??你的意思是varbinary(max)? – 2011-12-17 06:36:16

+0

如果您使用Sql Server 2008或更高版本,則可以使用FILESTREAM。 – 2011-12-17 06:43:39

回答

2

也許您的數據庫或ORM,如果您有任何,將例如字節數組截斷到12000個字節。