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>
                           @("Name: " + property.Name + ", Value: " + property.GetValue(result, null))
                        </li>
                        }
                    </ul>
                }

Note: this will print a big list of items in the page depends on the number of items in the Model and the properties each item have.

Comments

Popular posts from this blog

Error : ID4243: Could not create a SecurityToken.