gpt4 book ai didi

c# - 如何在 Web API 的异步方法中返回 Void

转载 作者:太空狗 更新时间:2023-10-29 17:38:59 24 4
gpt4 key购买 nike

我正在从存储库调用 Web API(C#) 中的方法。该方法是存储库不返回任何内容。它是虚空的。为什么我应该在我的 API 方法中返回,因为异步方法不能有 Void 返回类型。

这是我在 API 中的异步方法:

    [HttpPost]
[Route("AddApp")]
public async Task<?> AddApp([FromBody]Application app)
{
loansRepository.InsertApplication(app);
}

这是 EntityFrame 工作插入存储库(我可以顺便更改它)

     public void InsertApplication(Application app)
{

this.loansContext.Application.Add(app);
}

抱歉,我对问题进行了更改,我不确定我应该做什么?在任务中

最佳答案

如果你不想返回任何东西,那么返回类型应该是Task

[HttpPost]
[Route("AddApp")]
public async Task AddApp([FromBody]Application app)
{
// When you mark a method with "async" keyword then:
// - you should use the "await" keyword as well; otherwise, compiler warning occurs
// - the real return type will be:
// -- "void" in case of "Task"
// -- "T" in case of "Task<T>"
await loansRepository.InsertApplication(app);
}

public Task InsertApplication(Application app)
{
this.loansContext.Application.Add(app);

// Without "async" keyword you should return a Task instance.
// You can use this below if no Task is created inside this method.
return Task.FromResult(0);
}

关于c# - 如何在 Web API 的异步方法中返回 Void,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37039751/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com