Articles by Tag #efcore

Browse our collection of articles on various topics related to IT technologies. Dive in and explore something new!

Migrating From PostgreSQL to MongoDB in a .NET EF Core Application

For many reasons—including scalability, flexibility, and modernization—more and more development...

Learn More 10 0Feb 20

Top 10 Mistakes Developers Make in EF Core

EF Core simplifies database access and management in .NET applications a lot. While EF Core makes...

Learn More 7 4Jan 8

Parallel Queries in EF Core with PostgreSQL: Why It Fails and How to Fix It

You may have faced an interesting error trying to run queries in parallel with EF Core and Postgres:...

Learn More 7 0Apr 15

🚀 Optimize EF Core Queries with AsSplitQuery()

When working with Entity Framework Core (EF Core), queries that involve multiple Include() statements...

Learn More 6 0Apr 3

How to Implement Audit Trail in ASP.NET Core with EF Core

In modern web applications, tracking changes to data can be needed for monitoring, compliance, and...

Learn More 5 1Aug 16 '24

Generic DB Manager in .net C#

Simplify Your .NET Project with DbManager.EFCore Git Hub : dbmanager Nuget :...

Learn More 5 0Jul 8 '24

EFCore Tutorial P1: Getting Started with EF Core

In this article, we’ll walk through setting up Entity Framework Core (EF Core) in a console...

Learn More 4 0Sep 13 '24

Comprehensive Guide to Implementing Audit Logging in .NET with EF Core Interceptors

Audit logging is a critical component of modern applications, providing transparency, security, and...

Learn More 4 1Jan 26

EFCore Tutorial P4:Cleaning Up `OnModelCreating`

As your Entity Framework Core model grows, managing the configuration logic in the OnModelCreating...

Learn More 4 0Sep 13 '24

5 Key EF Core Features Every Developer Should Master

Entity Framework Core (EF Core) is a powerful Object-Relational Mapper (ORM) for .NET developers....

Learn More 3 1Aug 20 '24

Optimistic vs. Pessimistic Concurrency in EF Core (with Table Hints)

Many experienced developers are familiar with database transactions but often overlook the key...

Learn More 3 2Apr 10

How to Implement Multitenancy in ASP.NET Core with EF Core

Multitenancy is a software architecture that allows a single instance of a software application to...

Learn More 3 0Aug 20 '24

Implementing Unit of Work Pattern in EF Core

The Unit of Work (UoW) pattern is a design pattern that allows managing multiple operations that...

Learn More 3 0Sep 10 '24

Mastering `SelectMany` in EF Core: SQL Equivalents and Best Practices

Introduction Entity Framework Core (EF Core) provides powerful LINQ methods for querying...

Learn More 3 0Feb 13

Weekly Updates - Apr 25, 2025

Greetings Couchbase developers! This week's activities focus on a new connector with Microsoft, other...

Learn More 3 0Apr 25

How To Manage EF Core DbContext Lifetime

Proper management of the DbContext lifecycle is crucial for application performance and...

Learn More 2 0Oct 22 '24

Scheduling Jobs With Quartz and Database Persistence With EF Core Migrations

There are multiple options for job scheduling in .NET. The simplest one is creating a Background...

Learn More 2 1Jun 3

Use MassTransit To Implement OutBox Pattern with EF Core and MongoDB

Maintaining data consistency and ensuring reliable message delivery in microservices architectures...

Learn More 2 0Jul 27 '24

Calling Views, Stored Procedures and Functions in EF Core

While EF Core provides a robust API for interacting with the database, there are scenarios where you...

Learn More 2 0Jul 19 '24

ReadOnly DbContext with Entity Framework

Using a read-only DbContext in Entity Framework (EF) can provide several benefits, especially when...

Learn More 2 0Sep 6 '24

Adding another database provider (for testing) is not working in EF Core 9

For writing integration tests, a common approach is to change the database provider, for example, to...

Learn More 2 1Feb 18

EFCore Tutorial P7:Asynchronous queries

1. Introduction In modern applications, performance is crucial, especially when...

Learn More 2 1Sep 17 '24

Adding Revision Support to Entities in Entity Framework Core

This article explains how to add revision support to entities in Entity Framework Core. It outlines a step-by-step approach to refactor a basic entity into a revisioned model using discriminators.

Learn More 2 2Nov 13 '24

Getting Started with MongoDB in EF Core

Entity Framework Core (EF Core) is a popular ORM for .NET, typically used with relational databases...

Learn More 2 6Aug 13 '24

How To Create Migrations For Multiple Databases in EF Core

Have you ever needed to support multiple database providers when working with EF Core? This is what...

Learn More 2 0Feb 4

EFCore Tutorial P9:Understanding and Implementing Value Objects

Meta Description: Discover how to implement Value Objects in EF Core, including how to use owned...

Learn More 2 0Sep 27 '24

DBConcurrency with EF Core

What is concurrency in the database? Concurrency is the simultaneous processing of data by...

Learn More 1 2Oct 1 '24

EFCore Tutorial P5:Backing Fields and Shadow Properties

In this article, we’ll explore how to implement Backing Fields and Shadow Properties in Entity...

Learn More 1 0Sep 15 '24

EF Core Bulk Insert: Boost Your Performance With Entity Framework Extensions

When working with large datasets in Entity Framework Core, developers often hit performance...

Learn More 1 3Apr 1

Boosting EF Core Performance: 7 Essential Optimization Tips

This tutorial, guides viewers through essential techniques to optimize Entity Framework Core (EF...

Learn More 1 0Oct 26 '24