我需要将数据库中的所有记录显示到 HTML 页面。
@model QBKartMVC.Models.Products
@foreach (var item in Model)
{
<tr>
<td><input type="checkbox"></td>
<td>@Html.DisplayFor(x => x.ProductCode)</td>
<td>@Html.DisplayFor(x => x.ProductName)</td>
<td>@Html.DisplayFor(x => x.ProductDes)</td>
<td>@Html.DisplayFor(x => x.ActiveFlag)</td>
<td>@Html.DisplayFor(x => x.Price)</td>
</tr>
}
错误显示表达式树可能不包含动态操作
public IActionResult Index()
{
var context = new DBContext();
return View(context.Products.ToList());
}
这是控制器部分
慕运维8079593
慕码人2483693
紫衣仙女
相关分类