如何在不使用viewbag或selectlist的情况下使用剃刀中的列表作为DropDownListFor?

时间:2016-07-19 06:26:39

标签: asp.net-mvc razor html.dropdownlistfor

我有一个包含另一个模型列表的模型。现在,我尝试在部分视图页面中使用它作为dropdownlistfor。我不想使用viewbag或selectlist。我需要写一个帮助器吗?

产品型号

    [Key]
    public int Id { get; set; }

    public int? Code { get; set; }

    public int? ProductGroupId { get; set; }

    public virtual ProductGroup ProductGroup { get; set; }

    public List<ProductGroup> ProductGroups { get; set; } 

ProductGroup模型

   [Key]
   public int Id { get; set; }


   public int? THoldingAdminsId { get; set; }

   public virtual List<Product> Products { get; set; }


   public int? Code { get; set; }



   public string CName { get; set; }

我希望以产品形式显示产品组列表作为下拉列表。 有什么帮助吗?

0 个答案:

没有答案