我使用automapper将数据读取器映射到对象,并且它们工作得很好。 但是,当我的查询只返回一个DateTime:
列时select actionDateTime from @GenerateWeeklyTable
我使用automapper将其映射到c#
中的DateTime对象列表actionLogs.Dates = Mapper.Map<IDataReader, IEnumerable<DateTime>>(reader).ToList();
我收到了错误: System.ArgumentNullException:值不能为null。参数名称:con
那么在这种情况下使用automapper的正确方法是什么?
非常感谢