FileHelperEngine库映射到日期时间异常

时间:2015-10-02 15:19:56

标签: c# .net date datetime

我使用FileHelperEngine库将文本从管道分隔列表映射到对象。但是,在尝试将日期文本映射到DateTime属性时,我收到以下异常

这是我的clas中的属性

module.exports = function(){.... // all the code is here

日期格式为 - 2015-10-01 00:00:00.000

我收到以下异常 - 错误转换' 2015-10-01 00:00:00.000'输入:' DateTime'。使用格式:' yyyy-mm-dd HH:mm:ss.fff'

我怀疑我使用的日期掩码不正确。

非常感谢任何帮助

1 个答案:

答案 0 :(得分:0)

尝试将其更改为:

[FieldConverter(ConverterKind.Date, "yyyy-MM-dd HH:mm:ss.fff")]

注意大写MM几个月。小写mm是分钟。