MVC 5模型属性为空,但数据库包含值
本文关键字:数据库 包含值 模型 属性 MVC | 更新日期: 2023-09-27 18:05:49
My models:
public class Inventory
{
public int ID { get; set; }
public float Amount { get; set; }
public ApplicationUser Owner { get; set; }
public Item Item { get; set; }
public Unit Unit { get; set; }
}
public class Unit
{
public int ID { get; set; }
public string Abbreviation { get; set; }
public string FullName { get; set; }
public UnitType Type { get; set; }
}
当将控制器中的所有inventory传递给视图时,无论数据库中是什么,视图中的Unit字段始终为空。
控制器中被调用的动作:
public ActionResult Index()
{
return View(db.Inventorys.ToList());
}
相关视图部分:
@model IEnumerable<App.Models.Inventory>
@foreach (var item in Model) {
<tr>
<td>
@Html.DisplayFor(modelItem => item.Amount)
</td>
<td>
@Html.DisplayFor(modelItem => item.Unit.Abbreviation)
</td>
<td>
@Html.ActionLink("Edit", "Edit", new { id=item.ID }) |
@Html.ActionLink("Details", "Details", new { id=item.ID }) |
@Html.ActionLink("Delete", "Delete", new { id=item.ID })
</td>
</tr>
}
第二个DisplayFor (item.Unit.Abbreviation
)从不显示任何内容。我在视图上放置了一个断点,并且Model
中的模型都没有对其他模型的引用值。
数据库数据(链接到图像,因为我没有足够的Rep):
库存单位我使用代码优先开发
我认为问题是您没有检索单元记录。如果数据库的模式设置了正确的外键,您可以尝试
public ActionResult Index()
{
return View(db.Inventorys.Include(b => b.Unit_ID).ToList() );
}
引用这个