我的模特:
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; }
}
将控制器中的所有Inventorys传递给视图时,无论数据库中有什么,单元字段在视图中始终为空。
正在调用的控制器中的操作:
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):
我正在使用代码优先开发。
答案 0 :(得分:1)
我认为问题在于你没有检索单位记录。 如果数据库的架构正确设置了外键,则可以尝试此
public ActionResult Index()
{
return View(db.Inventorys.Include(b => b.Unit_ID).ToList() );
}
参考this