示例#1
0
        public ActionResult Index()
        {
            var entity = new MyEntity();
            var list = entity.GetList();
            var model = Mapper.Map<List<HomeViewModel>>(list);

            return View(model);
        }