Published: February 03 2023
How to implement authentication with an Angular front-end app and .NET 6.0 (ASP.NET Core) back-end API
Published: February 08 2023
How to implement authentication with a React 18 front-end app and .NET 6.0 (ASP.NET Core) back-end API
Published: February 03 2023
How to implement authentication with a Vue 3 front-end app and .NET 6.0 (ASP.NET Core) back-end API
Published: January 16 2022
This is a quick example of how to hash and verify passwords in .NET 6.0 using the BCrypt.Net-Next password hashing library, a C# implementation of the bcrypt password hashing function.
Tutorial on how to build a .NET 6.0 API that supports CRUD operations.
Published: November 28 2022
Last updated: January 05 2023
How to quickly apply the Authorize Attribute to all controllers by default in .NET 6.0
Published: January 17 2022
This is a quick post to show how to implement a global exception handler in .NET 6.0
Published: November 22 2022
This post shows how to connect a .NET 6 API to an InMemory database for testing with Entity Framework Core.
This is a quick example of how to send an email in .NET 6.0 using the MailKit email client library.
Published: February 04 2022
A step by step tutorial on how to build a minimal .NET 6.0 API from scratch with a couple of example endpoints/routes, with details on every line of code and configuration to show how it all fits together.
Published: December 14 2021
How to implement custom JWT authentication in .NET 6.0 with C#. Includes example client apps built with Angular, React, Vue & Blazor.
Published: December 20 2021
How to implement Basic HTTP Authentication in .NET 6.0 with C#. Includes example client apps built with Angular, React, Vue & Blazor.
This post shows goes through the steps to connect a .NET 6 API to PostgreSQL using Entity Framework Core, and automatically create/update the PostgreSQL database from code using EF Core migrations.
This post shows goes through the steps to connect a .NET 6 API to MySQL using Entity Framework Core, and automatically create/update the MySQL database from code using EF Core migrations.
This post shows goes through the steps to connect a .NET 6 API to SQL Server using Entity Framework Core, and automatically create/update the SQL Server database from code using EF Core migrations.
Published: September 05 2022
This post shows goes through the steps to connect a .NET 6 API to SQLite using Entity Framework Core, and automatically create/update the SQLite database from code using EF Core migrations.
Published: February 18 2022
How to build an API with role based authorization / access control in .NET 6.0 & C#. Includes example client apps built with Angular, React and Vue.
Published: January 24 2022
Last updated: February 20 2023
How to implement JWT authentication with Refresh Tokens in a .NET 6.0 API. Includes example client app built with Angular.