DateTime.ParseExact没有做我想要它做的事情

时间:2017-03-31 22:44:33

标签: c# datetime datetime-format

当对DateTime使用.ParseExact()方法时,我总是得到与我输入的字符串相同的输出。这是我的代码:

    [Authorize(Roles = "Backoffice, Manager")]
    [HttpPost]
    public ActionResult FilmShowCreate(FilmShowViewModel newFilmShow)
    {
        if (ModelState.IsValidField("FilmId") && ModelState.IsValidField("Time"))
        {
            DateTime unformattedDateTime = newFilmShow.Date.Date + newFilmShow.Time.TimeOfDay;
            string dateString = unformattedDateTime.ToString("yyyy-MM-dd HH:mm:ss");
            DateTime dbDate = DateTime.ParseExact(dateString, "yyyy-MM-dd HH:mm:ss", 
                CultureInfo.GetCultureInfo("en-US"), DateTimeStyles.AdjustToUniversal);

            FilmShow filmShow = new FilmShow
            {
                  Film = filmRepository.GetFilm(newFilmShow.FilmId),
                  Cinema = cinemaRepository.GetCinema(newFilmShow.CinemaId),
                  ThreeDimensional = newFilmShow.ThreeDimensional,
                  Date = dbDate,
                  SpecialEvent = newFilmShow.SpecialEvent
            };

            filmShowsRepository.AddShow(filmShow);

            return View("SuccesfullFilmShowCreate");

字符串dateString格式正常,但它是一个字符串,我需要将其作为格式DateTime存储在数据库中,如“year-month-day hours:minutes:seconds”。但无论出于何种原因,ParseExact在我的情况下似乎不起作用。我得到的DateTime格式是“dd-MM-yyyy HH:mm”。

1 个答案:

答案 0 :(得分:3)

它没有做你想要的,因为,那个功能不是假设来做你所描述的。

ParseExact只是表示输入必须与给定格式匹配才能被使用(而不是抛出异常)。它是Parse的对应部分,它将接受任何有效的日期/时间格式。 它与它创建的DateTime对象的任何字符串表示的未来格式完全没有关系。

如果要以给定格式输出,请在将该字符串发送到数据库之前将格式字符串传递给ToString。当然,如果您使用的是EF,那么转换就是为您完成的,并不重要。

示例:

string myFormattedDateTime = dbDate.ToString("yyyy-MM-dd HH:mm:ss");

更仔细地阅读你的问题,我意识到你似乎认为DateTime有一些“存储”格式。它不是。 DateTime只是一组数字,包含表示日期和时间所需的信息。您描述的格式存在于字符串表示中。