为什么我无法从表中检索数据?这显示错误
传递到字典中的模型项类型为&System; System.Data.Entity.Infrastructure.DbQuery
1[<>f__AnonymousType1
1 [System.String]]&#39;,但此字典需要模型项类型&#39; A.Models.AboutU&#39;。
控制器
{
var selectResult = db.AboutUs.Select(s => new { des = s.Description });
return View(selectResult);
}
查看
@model A.Models.AboutU
<p>
@Html.HiddenFor(model => model.Description)
@Html.DisplayFor(model => model.Description)
</p>
我有表中的值和beeds来检索表中的description列。但它似乎发生错误并且无法获取值,而使用断点则显示selectResult中的值为null。为什么获得价值?我需要更换控制器部件吗?