如何将系统日期时间格式转换为Sql日期时间格式

时间:2015-09-21 19:08:09

标签: c# sql-server wpf datetime c#-4.0

enter image description here

enter image description here

我正在使用实体框架数据库第一种方法和 我想将Date第一个对象移动到第二个对象First Object是System.DateTime,日期格式是(01-10-2015)但是我希望(2015-10-01)将第二个对象转换为第二个Object后的第二个对象第二个对象插入到数据库中 任何人都可以帮助我

2 个答案:

答案 0 :(得分:1)

使用DateTime.ParseExact:

DateTime temp = DateTime.ParseExact(date, "yyyy-MM-dd", CultureInfo.InvariantCulture);

答案 1 :(得分:0)

您需要指定格式:

DateTime.ParseExact("10/01/2015 12:00:00 AM", "yyyy-MM-dd", CultureInfo.InvariantCulture)