0
我有來自RSS提要的值Thu, 06 Nov 2014 10:47:21 GMT
。我想將此字符串保存到MS SQL數據庫中的DateTime字段。但是,我得到一個錯誤將字符串從RSS提要轉換爲數據庫的DateTime
「字符串未被識別爲有效的DateTime」
DateTime date = Convert.ToDateTime(a.PubDate);
string dateString = a.PubDate;
DateTime convertedDate = DateTime.ParseExact(dateString, "ddd dd MMM yyyy hh:mm:ss ttt", System.Globalization.CultureInfo.InvariantCulture);
db.Entry(a).State = System.Data.Entity.EntityState.Modified;
db.SaveChanges();