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.

link|improve this question
feedback

2 Answers

EF maps DateTime in .NET to datetime in SQL Server. The types have a different range: datetime can store only dates later than around the year 1750. If you try to store a DateTime in your entity with an earlier date or an unitialized DateTime (which has year 1) you get the exception because SQL Server cannot store this.

Solution:

  • Either make sure that the dates you want to store are later than 1750
  • Or map you DateTime properties explitely to datetime2 in SQL Server which has a wider range. Example how to define this mapping with Fluent API: http://stackoverflow.com/a/8044310/270591

Actually I also had expected a default mapping to datetime2 because it fits better to DateTime in .NET. But for some reason they decided to use datetime as default.

link|improve this answer
Thanks please see my own answer for an explanation. – UniqueMan Feb 11 at 0:02
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.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.