在下面的方法中,我收到了警告:This async method lacks 'await' operators and will run synchronously
。我在哪里可以使用await
?注意:此方法返回一个简单的静态视图,而不与数据库等交互。
public class TestViewComponent : ViewComponent
{
public async Task<IViewComponentResult> InvokeAsync()
{
return View();
}
}
由于您没有异步工作要做,您可以删除async
限定符并返回Task.FromResult
:
public Task<IViewComponentResult> InvokeAsync()
{
return Task.FromResult<IViewComponentResult>(View());
}
或者,你可以忽略警告(即用#pragma
将其关闭)。