How to pass a reference type TRULY as reference ?
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.…
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 past articles, we have seen code examples which target Microsoft SQL Server database. Entity framework core can be used with multiple plugins (in form of NuGet packages). These plugins…
In previous articles, we have seen how a BaseRepository can be created, how specification pattern can be implemented and can be extended further to use composite specifications. We also have…
In previous article, we have seen how to save related entities. The post explains how categories association with post can be saved. Same concept can be applied to saving tags…
If you have followed my previous article in this series, we already have setup API, Business and Data access layers for a blog application. This blog application uses entity framework…
In previous article, we have written repositories for blog demo. In this article, let's write business layer and API layer. After adding API layer, we would be able to use…
In previous articles, we have seen how the entity framework works, how to create models for EF core, how to define relationships, etc. In this article, we will use all…
AutoMapper is one of the widely used package. Especially when new project is setting up, this is generally used to speed up the development. Let's see how to configure AutoMapper…
In this article, let's discuss about filter pipeline, a chain that executes between the routing middleware and the selected action. What is it ? In previous article, we have seen…
When a request is received by .NET Core web API, it goes through a chain of middlewares. Every middleware add some feature in the request pipeline on top of previous…
Generally, .NET Core web APIs accept request in JSON format and return the response in JSON format too. In this article, we will try to discuss more about how the…