I\'m new to MVC C#.
Here is a ready and working code (the part of the working code).
@foreach (var item in Model) {
Directly use orderby
@foreach (var item in Model.OrderBy(i => i.Order)) { @Html.Raw(@item.Description) }