我有一个包含另一个模型列表的模型。现在,我尝试在部分视图页面中使用它作为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; }
我希望以产品形式显示产品组列表作为下拉列表。 有什么帮助吗?