Entity Framework Code First AddOrUpdate method insert Duplicate values

后端 未结 13 1147
清酒与你
清酒与你 2020-12-01 08:52

I have simple entity:

public class Hall
{
    [Key]
    public int Id {get; set;}

    public string Name [get; set;}
}

Then in the S

相关标签:
13条回答
  • 2020-12-01 09:44

    I found out that for this to work, the identity position should be 0 when the seed first run. You can reset it using:

    DBCC CHECKIDENT (tableName, RESEED, 0)
    
    0 讨论(0)
提交回复
热议问题