从MVC控制器解析对象以查看C#

时间:2015-12-13 00:04:37

标签: c# asp.net-mvc

我将列表中的对象存储到局部变量并尝试将其传递给如下所示的视图:

 public class BedController : Controller
{
    // GET: Bed
    public ActionResult Index(PatientRegister model, int id)
    {
        var patient = PatientRegisterController.BedsList.Single(x => x.NewPatient.BedNumber.Equals(id.ToString()));
        return View(patient);
    }
}

但我不知道如何从视图本身访问此对象,如

patient.SelectSomeOfTheProperites //This is the object that I parsed from controller 

1 个答案:

答案 0 :(得分:2)

将返回对象类型添加为模型

@model Bed

的身份访问返回对象属性
@model.SelectSomeOfTheProperites

希望这有帮助!