我有两张名为 objects 和 apartments 的表,它们与名为apartmentID
and的外键“连接” ObjectID
。我的控制器和模型非常简单:
模型:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
namespace Projekt.Models
{
public class WrapperModel
{
public IEnumerable<Projekt.Models.objects> Objects { get; set; }
public IEnumerable<Projekt.Models.apartments> Apartments { get; set; }
}
}
我的控制器是:
using System;
using System.Collections.Generic;
using System.Data;
using System.Data.Entity;
using System.Linq;
using System.Web;
using System.Web.Mvc;
using Projekt.Models;
namespace Projekt.Controllers
{
public class WrapperController : Controller
{
public ActionResult Index()
{
WrapperModel wrapperModel = new WrapperModel();
return View(wrapperModel);
}
}
}
我想制作一个使用@foreach 循环的视图:
取每个对象的名称,并将名称链接到其
Details.cshtml
页面Details.cshtml
在“对象”链接旁边显示链接到其页面的公寓 ID 。