My codefirst models have System.DateTime properties. When the database seeding code is invoked, it throws this exception: SqlException (0x80131904): The conversion of a datetime2 data type to a datetime data type resulted in an out-of-range value. I am creating a new DateTime object with the constructor. CodeFirst is creating the database schema. How do I overcome this apparent bug in CodeFirst? I am not particular about my datatype. I merely need to store a date, and optionally a time of day, but not crucial. I have searched and read a lot of posts, but none with this error specify they come from CodeFirst-generated data scheme. The closest answer I found involved making a change to the ProviderManifestToken in the edmx file, but my project does not have an edmx file. I did not use the designer, I am using CodeFirst.
|
feedback
|
|
EF maps Solution:
Actually I also had expected a default mapping to | |||
|
feedback
|
|
Sorry I found out after more careful debugging that the error was coming from a data entity initialization that involved me not specifying any value for the datetime. I had thought it was coming from a long data seeding statement that involved new DateTime(2012, 2, 19, 19, 0, 0) or some such. Thanks to Slauma for his efforts - he was correct that it was due to unitialized values. | |||
|
feedback
|