将数据作为方法参数传递时,使用数据填充模型

时间:2014-05-20 14:01:45

标签: c# asp.net-mvc entity-framework

是否可以做类似的事情:

    // GET:/Person/5
    public ActionResult ShowDetails(Person p)
    {
        // There shoud be object filled with data from database, something like that:
        // p.id = 5, p.Name = "John" (person of id 5 has name "John" in database)
        return View(p);
    }

我应该使用ModelBinders吗?如果是,我可以做一个模型绑定器,它将获取任何模型的数据吗?我已经为Person做了模型绑定器,但我不知道如何使用多个模型。谢谢。

0 个答案:

没有答案