我试图通过MVC从Excel到SQL检索数据,但是日期时间字段出现问题,因为它出现以下错误:
无法将类型'string'隐式转换为'System.DateTime吗?'
我在控制器中的代码:
public static string ConvertDateTime(string data)
{
DateTime dateTime;
return DateTime.TryParseExact(data, "mm/dd/yy hh:mm"
, System.Globalization.CultureInfo.InvariantCulture, DateTimeStyles.None, out dateTime)
? dateTime.ToString("mm/dd/yy hh:mm") : "N/A";
}
[HttpPost]
public ActionResult MultipleUpload(HttpPostedFileBase Excelfile)
{
string path = Server.MapPath("~/Content/" + Excelfile.FileName);
if (System.IO.File.Exists(path))
System.IO.File.Delete(path);
Excelfile.SaveAs(path);
//
Excel.Application application = new Excel.Application();
Excel.Workbook workbook = application.Workbooks.Open(path);
Excel.Worksheet worksheet = workbook.ActiveSheet;
Excel.Range range = worksheet.UsedRange;
List<goldenfpcmap> map = new List<goldenfpcmap>();
for (int row = 1; row <= range.Rows.Count; row++)
{
goldenfpcmap m = new goldenfpcmap();
m.InputDate = ConvertDateTime(((Excel.Range)range.Cells[row, 7]).Value.ToString());
db.goldenfpcmaps.Add(m);
db.SaveChanges();
}
return RedirectToAction("Action");
}
答案 0 :(得分:1)
对于入门级DateTime
,格式模式“ mm”代表分钟,而月份则是“ MM”。因此,您可能不是说“ mm / dd / yh hh:mm”,而是“ MM / dd / yy hh:mm”。
第二,您报告的错误表明属性或字段m.InputDate
期望使用DateTime?
,但得到的却是字符串。我建议重构您的convert方法。
public static DateTime? ConvertDateTime(string data)
{
DateTime dateTime;
if (DateTime.TryParseExact(data, "MM/dd/yy hh:mm", CultureInfo.InvariantCulture, DateTimeStyles.None, out dateTime))
return dateTime;
else
return null;
}