我有一个控制器通过 ViewBag 将数据传递给我的视图
我的控制器:
var aJobs = from a in gdb.AcceptedJobs
where a.Job.EmployerID == (Guid)Session["UserID"] && !a.Archived
select new { a.Job.Title, a.Job.Address };
ViewBag.jobs = aJobs;
return View("Employer");
我的观点:
foreach (var job in ViewBag.jobs)
{
@job.Title
@job.Address
}
现在,当我浏览到页面时出现错误object does not contain a definition for Title
,@job.Title
这是为什么?
我正在使用 ASP.Net MVC3 C#