Nullable Reference Migration – How to decide the nullability ?
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…
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…
You may already know that .NET 7 is going to be released around November 2022. Most of the times, we are so busy in looking for new and exciting features,…
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…
Is this title confusing ? I must admit thought a lot about what should be the title of this blogpost and could not come up with better than this one.…
I have been asked a question multiple times - how should I plan for learning .NET ? Where should I start from ? In this article, let's see how a…
In last few articles, I have been mostly writing about .NET Entity Framework Core. In almost every article, there is a demo and the demo source code was provided with…
Now a days, many real world the applications use the concept of soft-delete. This means the entity is not actually deleted from the database, but it is updated and a…
A database may contain various constructs - tables, views, stored procedures, functions, etc. We already have seen how tables can be mapped to C# EF core models, by defining a…
Sometimes applications have to perform multiple operations on the database. Traditionally, database level transactions are used by applications in order to ensure atomicity of such operations. In this article, let's…
In recent posts, I have been writing about EF Core concepts. EF Core code first approach allows to write C# code first and then this C# code can be then…