问题描述
- 新手求助,一个MVC的问题。
-
我建立了两张表A,B,A的主键是B的外键,根据外键把表B依次在页面输出,怎么设计控制器实现呢?
解决方案
ActionResult Index(int bid)
{
return View(db.A.Where(y => y.id == db.B.First(x => x == bid)));
}
时间: 2024-09-11 07:06:39
ActionResult Index(int bid)
{
return View(db.A.Where(y => y.id == db.B.First(x => x == bid)));
}