我不确定这是否重复,或者我正在问正确的方向,仍然确定我想为什么不问问GURU。
所以我在我的模型中有这个枚举
public enum LienRequirement
{
AbstractJudgment=1,
AbstractSupportJudgment=2,
Affidavit=3,
Agreement=4,
AgriculturalExempt=5
}
这是我的模特:
public class AbstractJudgment
{
[Key]
public int AbstractJudgmentId { get; set; }
public LienRequirement LienRequirementId { get; set; }
[ForeignKey("Reports")]
[Display(Name = "Report")]
public int ReportId { get; set; }
public virtual Reports Reports { get; set; }
}
我正在使用带有视图的MVC 5控制器,使用Entity Framework。所以在我的创建视图中,我得到了属性*
的下拉列表LientRequirementID
在下面的截图中给出: Screenshot
*
我只想要
协议
或者可能选择任何其他选项。