我是C#的新手,我在执行代码时遇到此错误 HomeController.cs
public async Task<ActionResult> Index(string searchString)
{
QnAQuery objQnAResult = new QnAQuery();
try
{
if (searchString != null)
{
objQnAResult = await QueryQnABot(searchString);
}
return View(objQnAResult);
}
catch (Exception ex)
{
ModelState.AddModelError(string.Empty, "Error: " + ex);
return View(objQnAResult);
}
}
当我尝试构建代码时,链接中显示错误。 它说名称&#34; ModelState&#34;在上下文中不存在。 并且名称&#34;查看&#34;在上下文中不存在。
出现这种问题的可能原因是什么? 谢谢!