Why is EF trying to insert NULL in id-column?

前端 未结 9 1974
伪装坚强ぢ
伪装坚强ぢ 2020-12-10 00:43

I am writing my project using Entity Framework 4.0 (Model first). At the beginning of the project, I faced with this problem: I am trying to insert the filled object in the

9条回答
  •  有刺的猬
    2020-12-10 01:28

    İf Model first try block

    [Key]
     [DatabaseGenerated(DatabaseGeneratedOption.None)]
     public Int64 PolicyID { get; set; }
    

提交回复
热议问题