来自通用IEnumerable <t> </t>的DropDownListFor Helper

时间:2012-03-30 12:01:10

标签: c# asp.net asp.net-mvc-3 razor

我有一个项目使用DDD和MvC3与剃刀在这个项目中有一个通用类实体:

public class Entity
{

   public long Id{ get; set;}

}

和其他班级一样:

public class Categories : Entity
{

  public string Name { get; set; }

  public string Description { get; set;}
}

和其他继承自Categories的类,例如:

 public class VideoCategory : Categories
    {
     // no have aditional proprieties
    }

需要创建一个Helper,从IEnumerable<Categories>建立一个DropDownList。

我有一个BaseRepository,它返回任何类型的列表,我会用它来加速。

public abstract class BaseRepository<TEntity> where TEntity: Entity
{

protected DbContext DbContext
        {
            get
            {
                return DependencyResolver.Get<IDbContext>() as DbContext;
            }
        }

 public virtual IList<TEntity> GetAll()
        {
            return ((IEnumerable<TEntity>)this.DbSet).Where(x => x.Deleted == false).OrderByDescending(item => item.Id).ToList();
        }

}

以及每个实体的存储库,例如:

public class VideoRepository : BaseRepository<VideoCategory >
    {
    }

所以我可以将存储库用于泛型类

中的列表obeter

1 个答案:

答案 0 :(得分:3)

您可以使用视图模型:

public class MyViewModel
{
    public long SelectedCategoryId { get; set; }
    public IEnumerable<SelectListItem> Categories { get; set; }
}

然后假设您有一组类别填充视图模型:

public class HomeController : Controller
{
    public ActionResult Index()
    {
        var categories = new[]
        {
            new Categories { Id = 1, Name = "cat 1" },
            new VideoCategory { Id = 2, Name = "cat 2" },
        };

        var model = new MyViewModel
        {
            Categories = categories.Select(x => new SelectListItem
            {
                Value = x.Id.ToString(),
                Text = x.Name
            })
        };
        return View(model);
    }
}

最后在视图中构建相应的下拉列表:

@model MyViewModel

@Html.DropDownListFor(x => x.SelectedCategoryId, Model.Categories)