Is it possible to make async calls inside Actions in Orchard CMS module controlle?
something like
public async Task<ActionResult> Index()
{
var result = await Service.Get();
return View();
}
Right now it just continue the execution and it doesn't get back to return View()