我正在使用Razor View引擎开发MVC Web应用程序。 我正在使用Entity Framework并使用Database First架构。还使用Automapper.Mapper映射实体和poco类,即View for Models 我是使用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);