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

前端 未结 3 1746
庸人自扰
庸人自扰 2021-02-15 17:33

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

LoginId      - int, identity
UserId       - int
LoginDateTime- Allow nulls fals         


        
相关标签:
3条回答
  • 2021-02-15 17:38

    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;
    
    0 讨论(0)
  • 2021-02-15 17:55

    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

    0 讨论(0)
  • 2021-02-15 18:03

    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.

    0 讨论(0)
提交回复
热议问题