This website uses cookies so that we can provide you with the best user experience possible. Cookie information is stored in your browser and performs functions such as recognising you when you return to our website and helping our team to understand which sections of the website you find most interesting and useful.
In this article, we'll discuss about how we can efficiently reuse HttpClient instances by means of dependency injection and how IHttpClientFactory helps.
HttpClient in ASP.NET Core – Issues and Best Practices
In this detailed article, let's see how to use HttpClient in ASP.NET Core; usage, issues and best practices with examples.
How to use Unit Of Work in ASP.NET Core
A UnitOfWork is a simple class with one method to save the context, and properties representing every related Repository which need to be processed as a whole.
How to run MySQL Database via a Docker Container
Using MySQL server via container is a lot simpler and easier to use than the original route; all we need to do is just pull the appropriate image which contains MySQL installed and connect to it.
Upgrading to .NET Core 3.0 – Troubleshooting the Swagger UI
Let me share a piece of my experience in the various issues I faced with setting up Swagger in my ASP.NET Core API, while upgrading it from the legacy aspnetcore2.2 to the most recent aspnetcore3.1 SDK
View Components in ASP.NET Core Simplified
In this article, let's discuss all about View Components in ASP.NET Core MVC and the scenarios it could be used with detailed examples.
How to write Faking Tests using xUnit
In this introductory article, let's get started with unit testing in .NET Core using xUnit and write some Faking tests using the same.
Setting up and Serving Angular Code in an ASP.NET Core Project
Off late, Single-Page Applications or SPAs have become the most sought after client facing application stacks, for their light-weight and high performance nature. In this architecture, the server focuses on data logic and supplies data to the client in the form of RESTful APIs, while the client application renders the fetched data onto a fluid and dynamic layout.
How to write to Azure Storage using ASP.NET Core
In this section, Let's look at how we can write some content to a File in Azure Storage from ASP.NET Core using Azure Storage SDK.