Does anybody know how to fix this error:
System.Data.Edm.EdmEntityType: : EntityType \'BlogTags\' has no key defined. Define the key for this EntityTy
Just put [Key] on top of your property (which is presenting primary key). Something like this,
[Key] public int BlogTypeId { get; set; }