ASP .NET Core API – Fluent Validation – Include Validators
In previous article, we have seen how RuleSets can be used to trigger different validations in different contexts. In this article, we are going to discuss about another pattern which…
In previous article, we have seen how RuleSets can be used to trigger different validations in different contexts. In this article, we are going to discuss about another pattern which…
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…
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…
We have seen how queries are evaluated and entities are tracked by EF Core. All operations performed on tracked entities are performed on an in memory instance of entity. The…
In one of the previous posts, we have seen the an approach which can be used to troubleshoot performance issues. In this article, let's try to understand how a query…