public void UpdatePerson(Person p)
 {
     using var context = new PeopleDbContext(_connectionString);
     context.People.Attach(p);
     context.Entry(p).State = EntityState.Modified;
     context.SaveChanges();
 }