[EntityFramework] Use SQL server time or field default value for DateTime type

Source: Internet
Author: User

DateTime type on SQL server if you set a default value, and you want to use the default value when EntityFramework adds a new row, you cannot assign a value to the DateTime field of the newly added entity.

However, if the newly added entity DateTime is not set, an error will appear as follows:

System.Data.Entity.Infrastructure.DbUpdateException -An error occurred while updating the entries. See the inner exception for details.
System.Data.Entity.Core.UpdateException -An error occurred while updating the entries. See the inner exception for details.
System.Data.SqlClient.SqlException -The conversion of a datetime2 data type to a datetime data type resulted in An Out-of-range value.
The statement has been terminated.

Solution:

Navigate to the Edmx file, select the field of the DateTime type, and in the Properties window, change Storegeneratepattern from None to Computed.

[EntityFramework] Use SQL server time or field defaults for DateTime types

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.