Entity Framework Code First AddOrUpdate method insert Duplicate values

后端 未结 13 1194
清酒与你
清酒与你 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:37

    If object(hall)'s id is 0, it is a insertion. I think you need to double check the id field of your hall objects

提交回复
热议问题