Measuring Performance using BenchmarkDotNet
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…
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…
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…
C# 9 introduced a new type - record. C# 10 introduced record struct. In this article, we are going to see how the classes and structs are different from this…
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…
I am writing about .NET EF core since past few weeks and if you have followed the series, you may already have seen the article about what are migrations and…
Entity Framework core exposes some events via DbContext and we have seen how those events can be used. In this article, we are going to have a look at another…