I\'m new to MVC C#.
Here is a ready and working code (the part of the working code).
@foreach (var item in Model) {
You can use the Linq OrderBy extension method
@foreach (var item in Model.OrderBy(i => i.Order)) { }