Add Vehicle
Let's add a related entity
Add vehicle class and replace the contents with the one below
namespace EFGetStarted
{
public class Vehicle
{
public int Id { get; set; }
public string Name { get; set; }
public int StudentId { get; set; }
public Student Student { get; set; }
}
}Last updated