我将列表中的对象存储到局部变量并尝试将其传递给如下所示的视图:
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
答案 0 :(得分:2)
将返回对象类型添加为模型
@model Bed
以
的身份访问返回对象属性@model.SelectSomeOfTheProperites
希望这有帮助!