Is there any difference in the context of execution in these two Azure functions:
public Task<IActionResult> GetValues()
{
return _service.GetValuesAsync()
}
public async Task<IActionResult> GetValues()
{
return await _service.GetValuesAsync()
}