When I use the given code it shows the warning always coming 'async method lacks 'await' operators and will run synchronously' when I run the application. How can I solve
[HttpGet] public async Task<IActionResult> CreateAuthor() { return View(); }
When I use the given code it shows the warning always coming 'async method lacks 'await' operators and will run synchronously' when I run the application. How can I solve
[HttpGet] public async Task<IActionResult> CreateAuthor() { return View(); }