我正在尝试将下拉列表添加到我的酒店视图 - index.cshtml。此视图的酒店控制器获取 Hotel 对象:
private HotelEntities db = new HotelEntities();
public ViewResult Index()
{
var hotels = db.Hotels.Include("Address");
return View(hotels.ToList());
}
我想在此视图中显示酒店列表。但在显示此列表之前,我希望用户能够搜索他们想要查看哪个国家的酒店。下拉列表是我数据库中的国家/地区列表。我的实体模型中有一个对象 - HotelEntities。我在共享文件夹中创建了一个部分国家视图,其中包含下拉列表和一个获取国家列表的国家控制器:
public class CountryController : Controller
{
private HotelEntities db = new HotelEntities();
//
// GET: /Country/
public ActionResult Index()
{
var country = db.Countries.ToList();
return View(country.ToList());
}
}
在部分视图中,我有:
@model IEnumerable <MvcApp20Aug.Models.Country>
@foreach (var item in Model)
{
@Html.DropDownListFor(model => item.CountryId, new SelectList(item.CountryIso, item.CountryName));
}
最后我将部分视图添加到我的酒店 index.cshtml 中:
@model IEnumerable<MvcHotelApp.Models.Hotel>
@{
ViewBag.Title = "Index";
}
<h2>Index </h2>
@{Html.RenderPartial("Country");}
<p>
我收到错误消息:传入字典的模型项的类型为“System.Collections.Generic.List`1[MvcHotelApp.Models.Hotel]”,但此字典需要“MvcHotelApp.Models.Country”类型的模型项.
所以我不明白如何在我的部分视图中使用不同的表到我的主视图。任何人都可以解释为什么不以及我应该如何处理这个问题。