Search code examples
asp.netasp.net-mvc-3entity-frameworkentity-framework-4ef-code-first

EF Code first : Cannot insert explicit value for identity column in table 'myTable' when IDENTITY_INSERT is set to OFF


Set the primary key to identity in database (SQL Server)

When using EF to insert data I am getting error

Cannot insert explicit value for identity column in table 'myTable' when IDENTITY_INSERT is set to OFF

with this particular entity, though I am using the same approach with other entities to insert the data and getting no error with them.

   public class MyTable 
    {
    [Key/*,DatabaseGenerated(DatabaseGeneratedOption.Identity)*/]
    public int ID{get;set;}
    public string name {get;set;}
    public string type {get;set;}
    public string status {get;set;}
    public int country {get;set;}
    public DateTime start_date {get;set;}
    public DateTime due_date {get;set;}
    }`

Query

    MyTable check= new MyTable();
            check.name = checkName;
            check.type = "DB";
            check.status = "New";
            check.country = country;
            check.start_date = DateTime.Now;
            check.due_date = dueDate;
            db.myTables.Add(check);
            db.SaveChanges();

Updated :

After uncommenting the above line

(DatabaseGenerated(DatabaseGeneratedOption.Identity)) 

it's throwing an exception

A dependent property in a ReferentialConstraint is mapped to a store-generated column. Column: 'ID'


Solution

  • I am not sure if it is in your case too....but the second error says..you are using your primary key as foreign key in some relation which is only valid for property having DatabaseGeneratedOption.None .

    So to use your primary key as identity you can decorate it with DatabaseGeneratedOption.Identity
    and in that case it will throw an exception because you can not use identity for relation(use DatabaseGeneratedOption.None instead).