我正在使用 Razor View 引擎开发 MVC Web 应用程序。我正在使用实体框架并使用数据库优先架构。还使用 Automapper.Mapper 映射实体和 poco 类,即视图模型我是使用 EF 从数据库获取数据的结构。
在执行 Mapper.CreateMapExpression 时,我在第二行出现错误
var detailCollection = GetRelatedCollection(entity);// Method to get data
var selectExpression = Mapper.CreateMapExpression<TDE, TD>(); //select expression from entity
return detailCollection.AsQueryable().Select(selectExpression);