public class Standard { [Key] [DatabaseGeneratedAttribute(DatabaseGeneratedOption.Identity)] public virtual int Id { get; set; } public virtual String Name { get; set; } [ForeignKey("StandardId")] public virtual ICollection<Student> Students { get; set; } }