下面是我遇到问题的代码的简化版本。当我在控制台应用程序中运行它时,它按预期工作。所有查询都并行运行,并Task.WaitAll()
在全部完成后返回。
但是,当此代码在 Web 应用程序中运行时,请求就会挂起。当我附加一个调试器并全部中断时,它表明执行是 wait on Task.WaitAll()
。第一个任务已经完成,但其他任务从未完成。
我不知道为什么它在 ASP.NET 中运行时挂起,但在控制台应用程序中运行良好。
public Foo[] DoWork(int[] values)
{
int count = values.Length;
Task[] tasks = new Task[count];
for (int i = 0; i < count; i++)
{
tasks[i] = GetFooAsync(values[i]);
}
try
{
Task.WaitAll(tasks);
}
catch (AggregateException)
{
// Handle exceptions
}
return ...
}
public async Task<Foo> GetFooAsync(int value)
{
Foo foo = null;
Func<Foo, Task> executeCommand = async (command) =>
{
foo = new Foo();
using (SqlDataReader reader = await command.ExecuteReaderAsync())
{
ReadFoo(reader, foo);
}
};
await QueryAsync(executeCommand, value);
return foo;
}
public async Task QueryAsync(Func<SqlCommand, Task> executeCommand, int value)
{
using (SqlConnection connection = new SqlConnection(...))
{
connection.Open();
using (SqlCommand command = connection.CreateCommand())
{
// Set up query...
await executeCommand(command);
// Log results...
return;
}
}
}