Good afternoon, ladies and gentlemen! There is a need to call a child action method via @Html.Action() (this is about ASP.NET MVC). Is it possible to do so? The method code is approximately as follows:
public async Task<ActionResult> Index() { var products = await _productsService.GetAll(CancellationToken.None); return PartialView(departments.ToList()); }