Articles

entity-framework-core

Many to Many Relationship with ABP and EF Core

In this article, we'll create a BookStore application like in the ABP tutorial and add an extra Category feature to demonstrate how we can manage the ...

Bulk Operations with Entity Framework Core 7.0

With .NET 7, there are two new methods such as ExecuteUpdate and ExecuteDelete available to execute bulk operations.

Unifying DbContexts for EF Core / Removing the EF Core Migrations Project

This article shows how to remove the EntityFrameworkCore.DbMigrations project from your solution to have a single DbContext for your database mappings...

EF Core 8 - Enhancements to JSON column mapping

In this article, we will examine the enhancements introduced in EF Core 8 for the JSON column feature, building upon the foundation laid by JSON colum...

Injecting Service Dependencies to Entities with Entity Framework Core 7.0

Why we may need to have references to other services in an entity class and how we can implement Entity Framework Core's new IMaterializationIntercept...

JSON Columns in Entity Framework Core 7

In this article, we will see how to use the new JSON Columns features that came with EF Core 7 in an ABP based application (with examples).

Model building conventions in Entity Framework Core 7.0

In this article, I will show you one of the new features of EF Core 7 named "Model building conventions".

Inheritance Strategies in Entity Framework Core 7

In this article, I'll show you all the object inheritance mapping strategies in Entity Framework Core, especially the new one: TPC Inheritance Mapping...

Handle Concurrency with EF Core in an ABP Framework Project with ASP.NET Core MVC

In this article, we'll create a basic application to demonstrate how "Concurrency Check/Control" can be implemented in an ABP project.

The new EF Core interceptors in Entity Framework Core 7.0

The new EF Core 7 interceptors.