Display Multi-pal List in Single View in c# MVC
Display Student Details and Student Marks in Single view StudentMarksViewModel public class StudentMarksViewModel { public int Id { get; set; } public Nullable<int> Maths { get; set; } public Nullable<int> Phy { get; set; } public Nullable<int> chemestriy { get; set; } } StudentDetailViewModel public class StudentViewModel { public int StudentId { get; set; } public string Name { get; set; } public string Streem { get; set; } public string ContactNumber { get; set; } public string Address { get; set; } } TwoListViewModel public class TwoListViewModel { public IEnumerable<Final_Form_Student> Final_Stude...