0

假设我有一个由实体 Car 和 2 个从 Car 继承的实体(SportsCar、Truck)组成的实体模型。

在我的网站上,我想显示一个汽车列表,混合了跑车和卡车,而且还显示了每种汽车的独特功能。

在我的控制器中,我从模型中检索所有汽车并将它们发送到视图。

如何在我的视图中构建逻辑来检查汽车是跑车还是卡车?

4

1 回答 1

0

您可以使用显示模板。让我们举个例子。

模型:

public class Car
{
    public string CommonProperty { get; set; }
}

public class SportCar : Car
{
    public string CarSpecificProperty { get; set; }
}

public class Truck: Car
{
    public string TruckSpecificProperty { get; set; }
}

控制器:

public class HomeController : Controller
{
    public ActionResult Index()
    {
        var model = new Car[]
        {
            new SportCar { CommonProperty = "sports car common", CarSpecificProperty = "car specific" },
            new Truck { CommonProperty = "truck common", TruckSpecificProperty = "truck specific" },
        };
    }
}

查看 ( ~/Views/Home/Index.cshtml):

@model Car[]

@for (int i = 0; i < Model.Length; i++)
{
    <div>
        @Html.DisplayFor(x => x[i].CommonProperty)
        @Html.DisplayFor(x => x[i])
    </div>
}

跑车的显示模板 ( ~/Views/Home/DisplayTemplates/SportCar.cshtml):

@model SportCar
@Html.DisplayFor(x => x.CarSpecificProperty)

卡车的显示模板 ( ~/Views/Home/DisplayTemplates/Truck.cshtml):

@model Truck
@Html.DisplayFor(x => x.TruckSpecificProperty)
于 2012-05-06T19:43:06.923 回答