Caching with NCache in ASP.NET CoreIn this article, we will talk about Distributed Caching, NCache, and its features such as Object Caching, Session Caching, and Response Caching along with practical implementation in ASP.NET Core. What is distributed caching A distributed cache is a ...Jun 1, 2022·21 min read
How to implement NextAuth credentials provider with external API and login pageDec 6, 2021·8 min read
Localization with JSON files in .NET 6We'll learn how to use JSON-based localization in.NET 6 and how to combine it with caching to make it even more efficient. We'll save the localized strings in JSON files and utilize middleware to swap languages using language keys in the request head...Nov 30, 2021·7 min read
Azure resource manager Templates Tutorial For BeginnersWhat is Azure Resources Manager (ARM)? Azure Resource Manager is the deployment and management service for Azure. It provides a management layer that enables you to create, update, and delete resources in your Azure account. You use management featu...Jun 15, 2021·6 min read
How to use Azure Key Vault in ASP.NET Core appsAzure Key Vault – what is it? Azure Key Vault is a tool for securely storing and accessing secrets. A secret is anything that you want to tightly control access to, such as API keys, passwords, or certificates. A vault is a logical group of secrets. ...Jun 5, 2021·5 min read
DateOnly and TimeOnly in .NET 6Two long-awaited types have been added to the core library in.NET 6 (preview 4). Developers can use DateOnly and TimeOnly to express either the date or time element of a DateTime. These two new types are structs (value types) and can be used when you...Jun 4, 2021·3 min read
Distributed Caching In ASP.Net 5 - Azure Cache for RedisIn this article, we will talk about Distributed Caching, Redis, Setting up Redis in the Azure portal, Redis Caching in ASP.NET Core, and a small practical implementation too. What Is Distributed Caching In ASP.NET Core? ASP.NET Core supports not only...May 28, 2021·7 min read
Global Error Handling in ASP.NET Core Web APIThe features of exception handling help us deal with the unexpected mistakes that can occur in our code. We will use the try-catch block in our code and finally keyword to clean up resources afterward to manage exceptions. Even though there is nothin...Oct 6, 2020·5 min read