Я хотел бы попросить о помощи, так как я создаю окно поиска фильтра для моего ASP.net MVC. Я следовал этому уроку https://docs.microsoft.com/en-us/aspnet/core/data/ef-mvc/sort-filter-page?view=aspnetcore-2.2, но в этом коде была ошибка.
public async Task <IActionResult> Index(string searchString)
{
using (DBModelEntities dbModel = new DBModelEntities())
{
ViewData["CurrentFilter"] = searchString;
var products = (from p in dbModel.Products
select p);
if(!String.IsNullOrEmpty(searchString))
{
products.Where(p => p.productName.Contains(searchString));
}
return View(await products.AsNoTracking().ToListAsync());//it had the error which states that Cannot implicitly convert type 'System.Web.Mvc.ViewResult' to 'RegLog.Controllers.IActionResult'
}
}