Can Asp.net edit one-to-one parent & child together?
I have following parent and child models public class Director { public int ID { get; set; } public Home? Home { get; set; } } public class Home { public int ID { get; set; } public int DirectorID…