Modify Student
Modify the student class
namespace EFGetStarted
{
public class Student
{
public Student() => Vehicles = new HashSet<Vehicle>();
public int Id { get; set; }
public string Name { get; set; }
public bool IsEnrolled { get; set; }
public string City { get; set; }
public ICollection<Vehicle> Vehicles { get; set; }
}
}Last updated