我AutoMapper
在我的应用程序中使用最新版本的。我想将DataTable
对象转换为List
类型,我正在使用以下代码阅读器的类型DataTable
Mapper.CreateMap<IDataReader, List<AutoShiftReportConfigDto>>();
var response = Mapper.Map<IDataReader, List<AutoShiftReportConfigDto>>(reader.CreateDataReader());
但它总是返回 0 计数,我的DataTable
列名也与AutoShiftReportConfigDto
' 的属性类型和名称相同