.NET – Composite Specifications using EF Core
In previous article, we have seen how to implement a specification pattern with generic repository pattern and how it helps. I got a question from one of the reader asking…
In previous article, we have seen how to implement a specification pattern with generic repository pattern and how it helps. I got a question from one of the reader asking…
In past few articles, we have seen how to design schema using EF core. We also created data access layer, business layer and created a .NET core web API with…
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 article, we have seen basics about implementing CRUD operations using EF core. Generally repository pattern is used to implement data access layers. In this article, we are going…
In previous article, we have developed a blog management schema using EF core. Now, let's try to create a simple class which performs CRUD operations. Before we begin Generally, when…
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…
In previous article, we have seen some basic rules about how entity framework core interprets the navigation properties and how it implicitly defines relationships based on how the properties are…
In previous article, we have seen some basic concepts about entity framework core. We have seen some basic terms and then different ways to define relationships using EF core conventions.…
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…
In previous article, we have seen what is distributed cache and we also had a look at distributed memory cache implementation. In this article, we will use the same demo…