.NET 7 – Using Configurations with Minimal API
In this article, let's try to move these configurations to the config file - appsettings.json. I expect the modifications required for this to be same as in regular .NET API…
In this article, let's try to move these configurations to the config file - appsettings.json. I expect the modifications required for this to be same as in regular .NET API…
In previous article, we have discussed about how the Serilog file sink can be configured in minimal API project. In this article, we are going to have a look at…
I have been writing about minimal APIs since past few articles. In previous article, we have used EF Core code first approach to setup the data access layer with minimal…
In previous article, I created a minimal API project and we saw what is the default code in the project template. We are going to extend on that code now.…
Minimal APIs are not new in .NET. They have been there since .NET 6 as far as I know. So, I thought this may be right time to explore them…
In this short article, we are going to create a new project, an ASP .NET Core API project. We are going to use the preview version of Visual Studio 2022…
The release candidate for .NET 7 has already been released. With .NET 7, there is going to be newer version of C# too. Since past few days, I have been…
Since past few articles, I have been trying to write about the new features introduced in C# 11 and .NET 7. We already have seen some features like raw string…
In this short article, let's try to discuss another new feature from C# 11 - generic attributes. What are attributes ? If you have been using C# for very long,…
I have read this name - Raw String Literal - few weeks back and then I was wondering what this feature is. In this article, we will try to understand…
In programming world, it is very common to have multiple implementations of the same interface. Most commonly used pattern is Factory pattern and it is also based on designing an…
C# language is getting a lot of new features. Some interesting mentions are private protected, or default implementation in interfaces, etc. In fact, one of the advantage of using C#…