EF插入或更新資料時出現錯誤提示:An error occurred while updating the entries. See the inner exception for details.的解決辦法。
原因一:資料庫欄位型別為datetime已設定預設值(getdate()).但EF插入和更新的時候是沒有主動設定其值,程式自動賦值為“0000-00-00 00:00:00”,所以造成的錯誤。
解決辦法:已設定預設值datetime型別的欄位,EF插入和更新前必須先主動賦值。
EF插入或更新資料時出現錯誤提示:An error occurred while updating the entries. See the inner exception for details.的解決辦法。
原因一:資料庫欄位型別為datetime已設定預設值(getdate()).但EF插入和更新的時候是沒有主動設定其值,程式自動賦值為“0000-00-00 00:00:00”,所以造成的錯誤。
解決辦法:已設定預設值datetime型別的欄位,EF插入和更新前必須先主動賦值。