Blazor Configuring Policy-based Authorization with Blazor 30 July 2019 In this post, I describe policy-based authorization and it’s advantages over the more legacy role-based authorization. Then show how to implement policy-based auth using WebAPI and client-side Blazor
Blazor (WebAssembly) Configuring Role-based Authorization with client-side Blazor 23 July 2019 In this post, I show how you can implement role-based authorization in a client-side Blazor application using WebAPI and ASP.NET Core Identity.
Blazor (WebAssembly) Authentication with client-side Blazor using WebAPI and ASP.NET Core Identity 10 July 2019 In this post, I show how you can build a client-side Blazor app with authentication using WebAPI and ASP.NET Core Identity.
Blazor (Server) Using Blazor Components In An Existing MVC Application 25 June 2019 In this post, I'm going to show you how you can enable an existing MVC application to use Blazor components. Then I'll show how you can replace part of an existing MVC view with a Blazor component.
ASP.NET Core Global Error Handling in ASP.NET Core MVC 6 August 2018 In this post I'll show you how you can handle both exceptions and non-success status codes, such as 404s, within your ASP.NET Core MVC applications
Docker Dockerising an ASP.NET Core application 6 January 2018 Docker is a technology which allows applications to be packaged up and run in containers. In this post we will go through how to achieve this with an ASP.NET Core application. All