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 CoreChild componentsCommunication through EventCallback I will…

Continue ReadingSorting and Paging in Blazor using EF Core

CRUD using Blazor and Entity Framework Core

In my last post (Get Started with Blazor), we discussed the Blazor Framework, Hosting models and how to set up authentication and authorization in a Blazor server-side application with an example.  In this post, I am going to explain CRUD using Blazor and Entity Framework Core.  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. …

Continue ReadingCRUD using Blazor and Entity Framework Core

Code First Entity Framework Core

Most of the people using Entity Framework are familiar with the approach of generating database through code.  This method is popularly known as "Code First" approach. "Code First" workflow begins with classes that describe the conceptual model.  In addition, Code first approach offers more control over the final appearance of the application code and the resulting database.  By the way we will talk about Code First Entity Framework Core using SQL Server in this blog…

Continue ReadingCode First Entity Framework Core