Articles in this series
ASP .NET Core Middleware is software integrated within the applications pipeline which can be used to handle the requests and responses. It is a piece...
The exception-handling features in .NET help us in handling abrupt errors that could appear in the code. Though we can use try-catch blocks to handle...
Authentication is the process of verifying the identity of a user. It is very important because it makes the applications secure by permitting only...
SOLID principles are comprised of five individual principles for writing better software. They are created by experienced developers for better...
Generics in C# provide a way to write type-safe as the compiler can perform compile-time checks on code for type safety and it also makes code...
Using synchronous in modern applications is a bad practice as code blocks the thread executing it from doing any other work as the application...