MVC - Looping through the model properties from cshtml
When ever we are struck with the values being not properly filled in the model and need to print all the properties of the model or dto of the page then we can use the below lines of code to loop through the model or dto and write all the items in the page. foreach (var result in Model) { var type = result.GetType(); var properties = type.GetProperties(); <ul> @foreach (var property in properties) { <li> ...