我现在正在寻找某个时间,即使在这篇文章中,我也找不到任何解决我的问题的方法:
基本上我有3门课:
Offer.cs、Application.cs 和 Contractor.cs
1 个优惠包含应用程序集合
1 个应用程序包含 1 个承包商。
基本上我想在视图中获取作为 null 的 Contractor 对象。谢谢你的帮助!!!!
代码如下:
看法
@foreach (var item in Model)
{
foreach (var candidate in item.Candidates)
{
Here is the problem #### canditate.Contractor == null ###
控制器
public ActionResult Index () {
return View (db.Offers.Include(c => c.Location).Include(c => c.Candidates).ToList ());
}
模型
public class Offer {
public Location Location { get; set }
public ICollection<Application> Candidates { get; set; }
}
public class Application {
public Contractor Contractor { get; set}
}