Post a form in ASP.NET Core
This article is about forms in ASP.NET Core, how to validate them and how to post the data. The purpose of a form is to… Read More »Post a form in ASP.NET Core
This article is about forms in ASP.NET Core, how to validate them and how to post the data. The purpose of a form is to… Read More »Post a form in ASP.NET Core
This post describes how you can create an Azure Blob Storage client in ASP.NET Core that can be used to communicate with your blob storage… Read More »Azure Blob Storage client in ASP.NET Core
This post explains how you can do safe updates of documents in Cosmos DB with optimistic concurrency control by using the etag of a document.… Read More »Safe update in Cosmos DB with etag, 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