我有两个表称为对象和公寓,这是与外键被称为“连接” apartmentID
和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
对象旁边的链接页面。