How to fix System.Data.Edm.EdmEntityType has no key

前端 未结 6 1945
误落风尘
误落风尘 2021-01-08 01:17

Does anybody know how to fix this error:

System.Data.Edm.EdmEntityType: : EntityType \'BlogTags\' has no key defined. Define the key for this EntityTy

6条回答
  •  走了就别回头了
    2021-01-08 01:46

    Just put [Key] on top of your property (which is presenting primary key). Something like this,

    [Key]
    public int BlogTypeId { get; set; }
    

提交回复
热议问题