Generic Cosmos DB SQL Client in ASP.NET Core
This post describes how you can create a generic Cosmos DB SQL client in ASP.NET Core. Azure Cosmos DB is a NoSQL database that is… Read More »Generic Cosmos DB SQL Client in ASP.NET Core
This post describes how you can create a generic Cosmos DB SQL client in ASP.NET Core. Azure Cosmos DB is a NoSQL database that is… Read More »Generic Cosmos DB SQL Client in ASP.NET Core
This post describes how you can use Redis Cache as IDistributedCache in ASP.NET Core. Redis Cache is an in-memory data structure store, used as a… Read More »Redis Cache in ASP.NET Core
This post explains how to respond with user friendly messages when http errors occur on your production website in ASP.NET Core. Custom http error messages… Read More »Custom http error messages in ASP.NET Core
Model-View-Controller (MVC) is a design pattern used in ASP.NET Core and other frameworks to seperate responsibilities and to allow for parallel development. This pattern seperates… Read More »Model-View-Controller in ASP.NET Core
Application settings is used to configure your application in ASP.NET Core. Application settings is key-value pairs that can be read by configuration providers. Examples of… Read More »Application settings in ASP.NET Core
In this post we will describe how you can create a typed generic HttpClient in ASP.NET Core. A typed generic HttpClient might be useful if… Read More »Generic HttpClient in ASP.NET Core
In this post we describe how you can create a generic database provider for MS SQL in ASP.NET Core. Our database provider will include all… Read More »Generic database provider for MS SQL in ASP.NET Core
Dependency injection (DI) is heavily used in ASP.NET Core and this post tries to explain how this technique is used. Dependency injection is a design… Read More »Dependency injection in ASP.NET Core
This post describes how you can minify and cache static files in ASP.NET Core. You may want to do this in order to make your… Read More »Minify and cache static files in ASP.NET Core
In this post I describe how you can redirect requests to https and www or non-www with a rewrite rule in ASP.NET Core. The reasons… Read More »Redirect to https and www or non-www in ASP.NET Core