Posted on: 12/6/2013 3:57:46 PM | Views : 1527

Could someone help with this error for the class below: Error: GEW.Models.Repository.Product: : EntityType 'Product' has no key defined. Define the key for this EntityType. ========================== Product.cs ========================== namespace GEW.Models {     public class Product {         public int pkProductID { get; set; }         public string Description { get; set; }         public decimal Cost { get; set; }     } }

Go to the complete details ...