0

我有一个在运行时转换 DTO(产品)的 ProductViewModel。

public class ProductViewModel : IViewModel {

    public ProductViewModel() {
        Categories = new List<CategoryViewModel>();
    }

    #region DTO Helpers

    public ProductViewModel(Product p) {
        this.ID = p.ID;
        this.Name = p.Name;
        this.Price = p.Price;
        Categories = new List<CategoryViewModel>();
    }

    #endregion


    public int ID { get; set; }
    public string Name { get; set; }
    public decimal Price { get; set; }
    public IEnumerable<CategoryViewModel> Categories { get; set; }
}

我之前在 LINQ2SQL 中使用过这段代码并且它可以工作,但现在使用实体框架它不会:

        var products = (from p in db.GetAll()
                        select new ProductViewModel(p));

我收到此错误:

Only parameterless constructors and initializers are supported in LINQ to Entities

任何人都可以帮助解释/解决这个问题吗?

4

2 回答 2

0
var products = (from p in db.GetAll()
               select new ProductViewModel{
                   ID = p.Id,
                   ....
               });
于 2013-03-13T10:42:17.970 回答
0

要从单个实体中检索所有详细信息,请使用此

Context.Set<your entity>().AsQueryable();
于 2013-03-13T10:48:01.357 回答