Is there any practical benefit of this
public async Task<IActionResult> Index()
{
return View(await _context.Movie.ToListAsync());
}
over this
public IActionResult Index()
{
return View(_context.Movie.ToList());
}
?
Will server waste its time if we use the latter code?