This sample demonstrates how to create a simple CRUD ASP.NET Core MVC application using data from Person table
+| + @if (column.Sortable) + { + + @column.Title@(Model.PagingInfo.IsSortedBy(column.PropertyName) ? (Model.PagingInfo.IsDescending() ? " ?" : " ?") : "") + + } + else + { + @column.Title + } + | + } ++ | ||||
|---|---|---|---|---|---|
| No data to display. | +|||||
| First name | +Last name | +Original name | +Birth date | +Country | +
|---|---|---|---|---|
| @person.FirstNameTranscription | +@person.LastNameTranscription | +@person.OriginalName | +@person.BirthDate.ToString("yyy-MM-dd") | +@person.CountryName | +