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

南笙酒味 提交于 2020-01-12 07:31:13

问题


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?


回答1:


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.




回答2:


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;



回答3:


Setting default values in Entity Framework 5 and 6 by changing T4 Template File Made below changes in .tt(template file) Example: red means remove and green means add This will add constructor in all entity classes with OnCreated method.

Like below

public partial class Category
{
    public Category()
    {
        this.Products = new HashSet<Product>();
        OnCreated();
    }

    partial void OnCreated();
    public int Id { get; set; }
    public string Name { get; set; }

    public virtual ICollection<Product> Products { get; set; }
}

Then create class file using same namespace that of Entities.

public partial class Category
{
    partial void OnCreated()
    {
        Name = "abc"
    }
}

Refer this https://www.youtube.com/watch?v=i8J2ipImMuU

Helpfull



来源:https://stackoverflow.com/questions/22436203/database-default-value-is-not-inserted-while-create-record-by-entity-framework

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!