2
我想爲我的存儲過程提供一個輸出參數。此輸出過程返回byte[]
。我該怎麼做呢?向sqlparametercollection提供輸出參數導致錯誤(Varbinary)
如果我做到以下幾點:
command.Parameters.Add(new SqlParameter("@Bytes", SqlDbType.VarBinary));
command.Parameters[1].Direction = ParameterDirection.Output;
我得到:
System.InvalidOperationException: Byte[][1]: the Size property has an invalid size of 0. This stored proc works fine in SQL Server when I execute it via the SSMS option "Execute Stored Procedure).
任何想法? 感謝