Using Razor to create a form for hierarchy of domain models
问题 Lets say I have the following classes (could you also consider if my classes in terms of that relation part is correct): public class EFDbContext : DbContext { public DbSet<Project> Projects { get; set; } public DbSet<Address> Addresses { get; set; } // * public DbSet<Country> Countries { get; set; } // * // Custom model builder bindings for * coz of the plural issue with EF } public class Project { public int ProjectID { get; set; } public string Name { get ; set; } public int AddressID {