Sorting and Paging in Blazor using EF Core

In my last post (CRUD using Blazor and Entity Framework Core), we discussed implementing CRUD using Entity Framework Core.  We also talked about Templated Components, Communication between components, etc.  In this post, we will see about implementing Sorting and Paging in Blazor using EF Core and Web API.  You will be familiar with the following topics after this post.

  • Call Web API from Blazor  
  • Implement Sorting and Paging using EF Core
  • Child components
  • Communication through EventCallback

I will use the sample application we have created in the previous post and extend it with the new functionalities we are going to talk about in this post.  I have also created a Web API project which will act as a data service. 

Please refer to the following link for more details.

https://www.blogofpi.com/sorting-and-paging-in-blazor-using-ef-core/

No Comments