C# 11 – Static abstract members in interfaces
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#…
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#…
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…
Do you have more then one person in the development team ? Then you may already know how important it is to have a consistent code style and formatting. Do…
In recent articles, I have tried to explain about nullable reference types feature. First article explains what are nullable reference types and how to enable the feature. There is another…
In the previous article, we have discussed basic concepts about what nullable reference types means and how this feature can be enabled. As you may already know, this feature is…
Since the beginning of C#, all reference types in C# are nullable. This means, if you create a variable of any reference type, you can assign a null to it.…
In the previous post, I have tried to jot down few concepts related to .NET upgrade. While working on that post, I also got to know about the .NET Upgrade…
This article is bit late to the party. The .NET 5 support ended on 10 May 2022. So it is high time, that the applications which are on .NET 5…
Recently, I have seen many people posting the "performance" stats of the small code snippet. I started reading about how that is done and that's how I got to know…
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…