如何使用automapper将datareader映射到DateTime列表?

时间:2015-04-02 09:32:08

标签: automapper

我使用automapper将数据读取器映射到对象,并且它们工作得很好。 但是,当我的查询只返回一个DateTime:

列时
select actionDateTime from @GenerateWeeklyTable    

我使用automapper将其映射到c#

中的DateTime对象列表
actionLogs.Dates = Mapper.Map<IDataReader, IEnumerable<DateTime>>(reader).ToList();

我收到了错误: System.ArgumentNullException:值不能为null。参数名称:con

那么在这种情况下使用automapper的正确方法是什么?

非常感谢

0 个答案:

没有答案