将模型转换为视图模型



我有一个表名为"Product"和另一个表名为"category"。产品表有'productID', 'productName'和'CategoryID'。分类表有'categoryID'和'categoryName'。

我的目标是显示具有类别的产品列表。该列表将包含'产品id', '产品名称'和'类别名称'。

我已经创建了一个视图模型。代码是

public int prodID{get;set;}
public int prodName{get;set;}
public int catName{get;set;}
在我的控制器中,我有:
var query= from p in dc.Product
                      select new {p.ProductID,p.ProductName,p.Category1.CategoryName };
var prod = new ProductIndexViewModel()
        {
            ProductList=query //this line is problematic !!it says an explicit conversion exists....
        };
        return View(prod);

我该如何写我的控制器代码,使其与视图模型匹配??

您可以使用AutoMapper来代替从数据库模型中重写属性。

var viewModel = new ProductIndexViewModel()
{  
    ProductList = dc.Product.ToList().Select(product => Mapper.Map<Product, ProductViewModel>(product));
}

也许你会直接使用你的视图模型类:

       var query = from p in dc.Product
                    select new ProductIndexViewModel() { 
                        prodID = p.ProductID, 
                        prodName = p.ProductName, 
                        catName = p.Category1.CategoryName 
                    };
        List<ProductIndexViewModel> productForView = query.ToList();

prodNamecatName应该是字符串吗?

还有,为什么不这样做呢:

var viewModel = dc.Product
    .ToList()
    .Select(x => new ProductIndexViewModel { prodID = x.ProductId, ... }
return View(viewModel);

相关内容

  • 没有找到相关文章

最新更新