我有一个强类型模型。
@model IPACS.Models.IPACS_Departments
这个模型有一个departmentID, name, description, owner.
我需要从这个模型中填充一个 DropDownList 但我不确定如何?
我希望值是 thedepartmentID
并且文本是name
。
这是我正在使用的模型。
那我的模型有问题吗?
公共 IPACS_Departments() { this.IPACS_Functions = new HashSet(); this.IPACS_Document = new HashSet(); }
[Key]public int departmentID { get; set; }
public string name { get; set; }
public string description { get; set; }
public string owner { get; set; }
public virtual ICollection<IPACS_Functions> IPACS_Functions { get; set; }
public virtual ICollection<IPACS_Document> IPACS_Document { get; set; }
我已经尝试了下面答案中的语法,但它不会编译。
我的 model.departmentID、model.name、model.description、model.owner 我不确定我在这里缺少什么。