I have 2 layout pages, One is a Master layout. This has basic layout that all my pages will use whether a user is logged in or not. The other is what i have called an Authorised layout, which is a layout view for users that are logged into the application. the Authorised layout view is rendered within the body of the Master layout and all my pages which require users to login are rendered within the body of the Authorised layout.
Now my question is how do I use the render section from the Master layout in the a child layout such as Home Page (for logged in user), i am not able to right now because the Master layout is not a direct master of the child views, it is a master of the Authorised layout which is the layout of the child view.
This is all in .NET CORE by the way