4

我需要通过 WebApi 从 Sql Server 流式传输 blob 数据。

我不想在 Web 服务器的内存中缓冲 blob 数据。

我有以下代码,但它不起作用 - 没有例外。

public class AttachmentController : ApiController
{
    public async Task<HttpResponseMessage> Get(int id)
    {
        using (var connection = new SqlConnection(ConfigurationManager.ConnectionStrings["ConnectionString"].ConnectionString))
        {
            await connection.OpenAsync();

            using (var command = new SqlCommand("SELECT Content FROM [Attachments] WHERE ID = @ID", connection))
            {

                command.Parameters.AddWithValue("ID", id);

                using (SqlDataReader reader = await command.ExecuteReaderAsync(CommandBehavior.SequentialAccess))
                {

                    if (await reader.ReadAsync())
                    {
                        using (Stream data = reader.GetStream(0))
                        {
                            var response = new HttpResponseMessage{Content = new StreamContent(data)};
                            //I get this from the DB else where
                            //response.Content.Headers.ContentType = new MediaTypeHeaderValue(attachment.ContentType);
                            //I get this from the DB else where
                            //response.Content.Headers.ContentLength = attachment.ContentLength;
                            return response;

                        }
                    }
                }
            }

            throw new HttpResponseException(HttpStatusCode.NotFound);
        }
    }
}

Fiddle 将以下错误作为响应写入:[Fiddler] ReadResponse() failed: 服务器没有针对此请求返回响应。

如何将内容从 DB 流式传输到 http 输出流,而不将其缓冲在内存中?

4

1 回答 1

1

在 ASP.NET MVC 完成读取之前关闭流。return一旦您离开语句执行后立即发生的各种 using 块,它将关闭。

我知道没有简单的方法可以做到这一点。最好的想法是编写一个自定义Stream派生类,该类包装由 ADO.NET 返回的流,并且一旦流耗尽,就会处理所有内容(Stream读取器、命令和连接)。

此解决方案意味着您不能使用 using 块等。我真的不喜欢它,但我现在想不出更好的东西。要求很难组合:您想要流式传输行为并且需要处置您打开的各种资源。

于 2013-08-17T18:39:46.017 回答