Child action in MVC 5 does not support async
I haveĀ a need for creating a child action in a controller in my side project. I’ve been using async everywhere else in the application so it’s obvious that I’m going to make this child action async. My child action is similar to the example below: [ChildActionOnly] public async Task<ActionResult> SampleChildAction() { // Call an asynchronous … [Read more…]