使用MVC 6 EF将数据传递到视图

时间:2015-02-20 13:40:00

标签: c# asp.net-mvc entity-framework model-view-controller viewbag

由于我看到有几个人建议不要使用ViewBag,我想知道如何正确使用:

返回视图()

我已经读过您需要使用所谓的ViewModel,但是当您使用Entity Framework时,这些似乎不适用。

如何将数据传递给View? 如何在View中访问所述数据?

1 个答案:

答案 0 :(得分:6)

您可以传递"视图模型"或对象:

public ActionResult Index() {
    var model = new MyViewModel();
    model.MyProperty = "My Property Value"; // Or fill the model out from your data store. E.g. by creating an object to return your view model: new CreateMyViewModel();

    return View(model);
}

在您的视图页面(此处为Index.cshtml)中,将其添加到顶部:

@model MyViewModel

并访问MyViewModel上的属性,如:

@Model.MyProperty
@Html.DisplayFor(model => model.MyProperty)

要获得更深入的答案,请查看:What is ViewModel in MVC?