Public · Protected · Private
System.Data.Edm.EdmEntityType: : EntityType '???' has no key defined. Define the key for this EntityType
Type: Public  |  Created: 2012-08-23  |  Frozen: Yes
« Previous Public Blog Next Public Blog »
Comments
  • Anyone have Fix for this?

    namespace MvcApplication1.Models
    {
        public class Team
        {
            [Key]
            public int TeamId { get; set; }
            [Required]
            public string Name { get; set; }
            public string City { get; set; }
            public DateTime Founded { get; set; }
        }

    .... Then tried to create a TeamController !!

    2012-08-23 14:02
This blog is frozen. No new comments or edits allowed.