我在数据库中有 2 个表。第一个表是它的全部描述,第二个表描述是第一个表的一部分。它看起来像:
+----------+ +----------+
I Table1 I I Class I
+----------+ +----------+
I Id I I Id I
I ClassId I <- I Name I
+----------+ +----------+
主表其table1.Connection 表可用。
[HttpPost]
public ActionResult RoomFound(int className, FormCollection collection)
{
var example = db.table1.Where(p => p.ClassId == className);
ViewBag.Ex = example.ToList();
}
现在,当我创建 View 并显示结果时,它会显示 ClassId 之类的数字,但我想查看 table2 中的字符串格式。如何在我的主表(表 1)中连接表 2(类)的关系。