In this chapter, I will show how to create a simple report that displays all person records in the database sorted by last name and then first name. We will be using Entity Framework Core 5 to aggregate the data and a custom Razor Page to display the report as an HTML table. After we have the report working, we’ll add pagination to it.
Creating the Razor Page
This will ...