How can I make `await …` work with `yield return` (i.e. inside an iterator method)?(如何使 `await ...` 与 `yield return` 一起工作(即在迭代器方法中)?)
问题描述
我的现有代码类似于:
IEnumerable<SomeClass> GetStuff()
{
using (SqlConnection conn = new SqlConnection(connectionString))
using (SqlCommand cmd = new SqlCommand(sql, conn)
{
conn.Open();
SqlDataReader reader = cmd.ExecuteReader();
while (reader.Read())
{
SomeClass someClass = f(reader); // create instance based on returned row
yield return someClass;
}
}
}
看来我可以通过使用 reader.ReadAsync()
受益.但是,如果我只修改一行:
It seems I could benefit by using reader.ReadAsync()
. However, if I just modify the one line:
while (await reader.ReadAsync())
编译器告诉我 await
只能用在标有 async
的方法中,并建议我将方法签名修改为:
the compiler informs me that await
can only be used in methods marked with async
, and suggests I modify the method signature to be:
async Task<IEnumerable<SomeClass>> GetStuff()
但是,这样做会使 GetStuff()
无法使用,因为:
However, doing that makes GetStuff()
unusable because:
GetStuff()
的主体不能是迭代器块,因为 Task
不是迭代器接口类型.
The body of
GetStuff()
cannot be an iterator block becauseTask<IEnumerable<SomeClass>>
is not an iterator interface type.
我确定我错过了异步编程模型的一个关键概念.
I'm sure I am missing a key concept with the async programming model.
问题:
- 我可以在我的迭代器中使用
ReadAsync()
吗?怎么样? - 如何以不同的方式思考异步范式,以便了解它在这种情况下的工作原理?
推荐答案
从 C# 8 开始,这可以通过 IAsyncEnumerable
As of C# 8, this can be accomplished with IAsyncEnumerable
修改代码:
async IAsyncEnumerable<SomeClass> GetStuff()
{
using (SqlConnection conn = new SqlConnection(connectionString))
using (SqlCommand cmd = new SqlCommand(sql, conn)
{
conn.Open();
SqlDataReader reader = cmd.ExecuteReader();
while (reader.Read())
{
SomeClass someClass = f(reader); // create instance based on returned row
yield return someClass;
}
}
}
像这样消费它:
await foreach (var stuff in GetStuff())
...
这篇关于如何使 `await ...` 与 `yield return` 一起工作(即在迭代器方法中)?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何使 `await ...` 与 `yield return` 一起工作(即在迭代器方法中)?
基础教程推荐
- SSE 浮点算术是否可重现? 2022-01-01
- rabbitmq 的 REST API 2022-01-01
- c# Math.Sqrt 实现 2022-01-01
- 将 Office 安装到 Windows 容器 (servercore:ltsc2019) 失败,错误代码为 17002 2022-01-01
- 为什么Flurl.Http DownloadFileAsync/Http客户端GetAsync需要 2022-09-30
- 有没有办法忽略 2GB 文件上传的 maxRequestLength 限制? 2022-01-01
- 如何在 IDE 中获取 Xamarin Studio C# 输出? 2022-01-01
- 将 XML 转换为通用列表 2022-01-01
- MS Visual Studio .NET 的替代品 2022-01-01
- 如何激活MC67中的红灯 2022-01-01