我有一份患者名单。Patient 类的属性之一是 PatientId,它是一个 int。我的列表初始化如下:
List<Patient> = new List<Patient>() { new Patient { PatientId = 1,
FirstName = "Jane",
LastName = "Doe"}};
当我在我的视图中使用以下内容访问 PatientId 时:
@Html.DisplayForModel(modelItem => modelItem.PatientId) //Error
我收到一个错误:
Cannot convert lambda expression to type 'object' because it is not a delegate type