Does anybody know how to fix this error:
System.Data.Edm.EdmEntityType: : EntityType \'BlogTags\' has no key defined. Define the key for this EntityTy
Same scenario as @Gilesey. In my case I had to mark the key attribute public,
public int Id { get; set; }