As weird as may sound, is it possible to render a Razor Page (a PageModel derived class) to Html?
To give you an idea of why I’d need this, I’m looking for ways to try nest Razor Pages.
For example, if I have a ParentModel : PageModel and a ChildModel: PageModel, I’d like to be able to put Child.cshtml somehow in the Parent.cshtml.
So for this, I’m first exploring the idea of how to render the ChildModel as a partial view.