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

前端 未结 6 2072
误落风尘
误落风尘 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

    Same scenario as @Gilesey. In my case I had to mark the key attribute public,

    public int Id { get; set; }

提交回复
热议问题