Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Database default value is not inserted while create record by entity framework

I have a LoginRecord table in sqlserver 2008 with the following column structure-

LoginId      - int, identity
UserId       - int
LoginDateTime- Allow nulls false,default value getdate()

I am inserting new record by entity framework 6 as below-

 db.LoginRecords.Add(new LoginRecord() { UserId = UserId }); 
 db.SaveChanges();

But in LoginDateTime table, null value is being inserted. It supposed to be current datetime.

I am using database first approach.

How can overcome this issue?

like image 317
s.k.paul Avatar asked Mar 16 '14 11:03

s.k.paul


2 Answers

Combined my two comments into an answer.

Try setting the "StoredGeneratedPattern" attribute of your datetime in the EDMX file to Computed. From the following thread: http://www.stackoverflow.com/a/4688135/2488939

To do this, go to the edmx file designer by clicking on your edmx file. Then locate your table and the property. Right-click the column in the table that you want to change and click on properties. The property window should then come up and you will see as one of the properties "StoredGeneratedPattern". Change that to computed.

like image 54
The Mahahaj Avatar answered Nov 16 '22 02:11

The Mahahaj


In addition to changing the EDMX file as suggested by Vishwaram Maharaj, you should make the definition of the table match between EF and the DB. The table description of "LoginDateTime- Allow nulls false" is itself false. The field clearly allows NULLs if NULLs are being inserted. Alter the column to not allow NULL if it truly shouldn't have NULL values in it:

ALTER TABLE LoginRecords ALTER COLUMN LoginDateTime DATETIME NOT NULL;
like image 20
Solomon Rutzky Avatar answered Nov 16 '22 01:11

Solomon Rutzky