❔ EntityFramework Relations doesn't work
Hewoo, I'm new to EntityFramework and I'm trying to make a simple One to Many relation but it doesn't work






/close DbSetPhoneNumberspublic class ContactContext : DbContext
{
public DbSet<Contact> Contacts { get; set; }
protected override void OnConfiguring(DbContextOptionsBuilder optionsBuilder)
{
optionsBuilder.UseSqlite("Data Source=./database.sqlite");
}
}public DbSet<PhoneNumber> PhoneNumber { get; set; }