.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.…
In last few articles about nullable reference migrations, I tried to cover basics about this feature. I also tried to cover some tips for the nullable reference migration in an…
Many of us have been working on projects which use EF Core for data access. When the project is in its initial stages, generally there are a lot of modifications…
I already have discussed briefly about InMemory database provider for EF Core in one of the past articles. That article was a small step by step guide to explain how…
In some past blogs, I have discussed about how the relationships can be modelled using EF Core. There are also couple of articles explaining about, defining relationships between entities and…
I have written a blog post about EF core few months back. Today, I was trying to setup a sample .NET Core 3 application with EF Core. I found that…