Testing ASP.NET Core middleware - part 5
This article explains how the WebApplicationFactory can be used to test ASP.NET Core Middleware
Articles concerning the coding language C#
This article explains how the WebApplicationFactory can be used to test ASP.NET Core Middleware
Lately, I had this odd requirement to truncate decimal places without actually rounding them. These are the solutions I discovered.
This article is part of a series that explains how to develop factory-based ASP.NET Core middleware
This article is part of a series that explains how to develop convention-based middleware components with ASP.NET Core
This article is part of a series about ASP.NET Core middleware and explains how inline-middleware can be written using lambda expressions
This article explains the high-level concepts of ASP.NET Core middleware and is the first in a series of articles.
This post demonstrates how ASP.NET Core integration tests can be combined with .NET Test Containers & Postgres by creating a custom WebApplicationFactory.
This post describes how docker support can be (temporarily) disabled with
This article describes how a monte carlo experiment can be carried out on Azure Batch to estimate Pi.
This article demonstrates how to authenticate against an AAD-integrated Postgres instance with a (managed) Azure identity and Entity Framework Core.
Application Insights does not provide a turn-key ready solution that logs request and response bodies. This article shows how to leverage a custom ASP.NET Core middleware to get that data into Azure Monitor.
When developing a RESTful API we sometimes need to return an HTTP status code that is not included in Microsoft's HttpStatusCode enumeration. For example this is the case for HTTP 423 (Locked) and others. This post will give you an example on how to return such a custom HTTP status