I have a student details page which i want to display student details, course details and another related informations on a single page. The reason for requiring to pass and display multiple models is that i am doing the project from an existing and operational database, so no way to update related structures and have them as a single model.
Is there any other way passing multiple IEnumrable<Model>
values to a razor view with return view(model1, model2)
of which are the result sets returned from two tables using a unique identifier columns selection.