除其他外,存储过程返回 varbinary(max) 作为 OUTPUT。我不明白如何使用 Dapper 访问这些信息。
下面是一些说明问题的简化示例代码。我为 StoredProcedure 提供了一些参数,我希望得到一张照片,该照片在 SQL Server 上存储为 varbinary(max)。
varbinary 没有 DbType。我尝试使用 DbType.Binary 但这会导致 Dapper 出现异常。如果我把照片参数拿走,我希望得到的所有其他参数(为简洁起见从样本中删除)都在工作。所以唯一的问题是检索 varbinary 数据。
实现这一目标的正确方法是什么?
using (var connection = new System.Data.SqlClient.SqlConnection(HelperClassesBJH.HelperMethods.ConString("ProductionLocal")))
{
connection.Open();
DynamicParameters p = new DynamicParameters();
p.Add("@OpID", id, DbType.Int32, ParameterDirection.Input);
p.Add("@StageID", Properties.Settings.Default.StageID, DbType.Int32, ParameterDirection.Input);
p.Add("@Photo", dbType: DbType.Binary, direction: ParameterDirection.Output);
try
{
connection.Execute(sql, p, commandType: CommandType.StoredProcedure);
op.Photo = p.Get<byte[]>("@Photo");
}
catch {}
}
更新:
我发现我必须在 DynamicParameters 构造函数中提供“值”参数。这避免了我得到的异常。我无法理解为什么我需要提供一个值,因为参数是一个输出并且我提供的值没有被使用。这是修改后的代码:
DynamicParameters p = new DynamicParameters();
MemoryStream b = new MemoryStream();
p.Add("@OpID", id, DbType.Int32, ParameterDirection.Input);
p.Add("@StageID", Properties.Settings.Default.StageID, DbType.Int32, ParameterDirection.Input);
p.Add("@Photo", b, DbType.Binary, direction: ParameterDirection.Output);
try
{
connection.Execute(sql, p, commandType: CommandType.StoredProcedure);
op.Photo = p.Get<byte[]>("@Photo");
}
catch {}
这导致检索包含预期图像数据的字节数组。