Notes from the workbench
everything I'm learning about modern .NET.
Tutorials, deep-dives, and field notes on .NET, ASP.NET Core, EF Core, AWS, Docker, and the architecture that holds up in production. Written when I've shipped something or learned something worth sharing.
143 articles · browse by category
page 11
121–132 of 143-
dotnetIntroducing fullstackhero - Open Source Boilerplates for Rapid Web Development
Ever gone through the painful process of setting up solutions from scratch although most of the features/code seems to be repetitive? fullstackhero addresses this very pain point and offers complete end-to-end solutions/boilerplates to facilitate and ease the process of getting started with web development.
Feb 26, 2022 · 5 min read → -
dotnetJSON Based Localization in ASP.NET Core With Caching - Super Easy Guide
In this article, we are going to learn how to implement JSON Based Localization in ASP.NET Core and club it with Caching to make it even more efficient.
Sep 26, 2021 · 8 min read → -
dotnetMultitenancy in ASP.NET Core - Simplest Way to achieve Multitenancy
In this article, let's learn how to implement Multitenancy in ASP.NET Core in a rather simple way making use of Entity Framework Core.
Aug 31, 2021 · 20 min read → -
dotnetModular Architecture in ASP.NET Core - Building Better Monoliths
In this article, we will discuss Modularizing Web Applications using Modular Architecture in ASP.NET Core. We will go through Monolith Architecture's various cons and pros and work on how to build monolith applications in a better way.
Jul 11, 2021 · 18 min read → -
dotnetSpecification Pattern in ASP.NET Core - Enhancing Generic Repository Pattern
We will talk about implementing Specification Pattern in ASP.NET Core applications and how it can enhance the already existing Generic Repository Patterns.
Apr 24, 2021 · 14 min read → -
dotnetBuilding a Chat Application with Blazor, Identity, and SignalR - Ultimate Guide
In this Guide, we will be building a full-fledged Chat Application With Blazor WebAssembly using Identity and SignalR from scratch.
Apr 2, 2021 · 28 min read → -
dotnetBlazor Hero - Clean Architecture Template Quick Start Guide
A Clean Architecture Template built for Blazor WebAssembly using MudBlazor Components. This project will make your Blazor Learning Process much easier than you anticipate. Blazor Hero is meant to be an Enterprise Level Boilerplate, which comes free of cost, completely open sourced.
Mar 19, 2021 · 14 min read → -
dotnetImplementing Blazor CRUD using Mudblazor Component Library in .NET 5 - Detailed Guide
In this article, we will demonstrate implementing Blazor CRUD using Mudblazor Component Library with a more polished way to achieve the CRUD functionalities.
Feb 17, 2021 · 12 min read → -
dotnetPermission-Based Authorization in ASP.NET Core - Complete User Management Guide in .NET 5
Setting up Permissions to access your resources is always a crucial part of your application's security. In this article, we will implement Permission-Based Authorization in ASP.NET Core that builds upon the concept of Claim-Based Authorization in ASP.NET Core. As usual, we will be building this application right from scratch to get some detailed knowledge about the whole scenario and how it would actually help you secure your projects.
Jan 24, 2021 · 25 min read → -
dotnetAudit Trail Implementation in ASP.NET Core with Entity Framework Core
In this article, we will learn about Using Entity Framework Core and Dapper in ASP.NET Core together in the same application. Another major point of discussion will be Transactions. By the end of the article, we will have an application that works with both Entity Framework Core and Dapper alongside each other, but also intelligent enough to rollback data whenever there is an exception with the process.
Dec 26, 2020 · 12 min read → -
dotnetUsing Entity Framework Core and Dapper in ASP.NET Core - Safe Transactions
In this article, we will learn about Using Entity Framework Core and Dapper in ASP.NET Core together in the same application. Another major point of discussion will be Transactions. By the end of the article, we will have an application that works with both Entity Framework Core and Dapper alongside each other, but also intelligent enough to rollback data whenever there is an exception with the process.
Nov 8, 2020 · 17 min read → -
dotnetRabbitMQ with ASP.NET Core - Microservice Communication with MassTransit
In this article, let's talk about Microservice Communication using RabbitMQ with ASP.NET Core. Essentially, we will learn how to enable communication between Microservices using RabbitMQ and MassTransit. Let's get started!
Aug 22, 2020 · 13 min read →