Entity Framework Core Articles, Tutorials & News
Entity Framework Core articles, tutorials, and news from the DotNetNews archive.
486 articles Updated Page 2 of 20
Entity Framework Core articles, tutorials, and news from the DotNetNews archive.
Entity Framework Core articles
Page 2 of 20
Newest first
-
The Silent Database Killer: The N+1 Query Problem in EF Core
medium.com Issue #484
Your database might be slowly eaten alive by a hidden performance killer, without you even realising it. It’s called the N+1 query problem…
-
EF Core in Clean Architecture the Pragmatic Way
antondevtips.com Issue #484
A focused guide to using EF Core in Clean Architecture without repositories. Learn why the Dependency Rule still holds when your Application layer uses DbContext directly, how to keep your handlers sm
-
Stop Hand-Rolling Audit Logs in EF Core
iamrzr.medium.com Issue #483
Every team that touches regulated data eventually has the same meeting. Someone from compliance asks a deceptively simple question: who…
-
Why DbContext Is Scoped and Not Singleton
medium.com Issue #483
Understanding dependency injection lifetime, thread safety, and the unit-of-work pattern in Entity Framework
-
C#: What Is the Repository Pattern for Data Access with Entity Framework?
pietschsoft.com Issue #480
If you spend enough time building C# applications, you eventually run into this question:
-
The Hidden Cost of Include() in EF Core
medium.com Issue #480
Include() is one of the most useful features in EF Core. It’s also one of the easiest ways to accidentally hurt performance.
-
I Deleted the Repository Pattern From Our Codebase. Here’s What Happened.
medium.com Issue #479
Six months later, nobody asked for it back. (And our tests finally catch real bugs.)
-
Why ExecuteUpdateAsync() Is One of EF Core's Best Features?
medium.com Issue #479
Most EF Core update statements look like this:
-
10 EF Core Performance Mistakes (and How to Fix Them) in .NET 10
codewithmukesh.com Issue #479
10 EF Core performance mistakes that ship to production - N+1 queries, missing projections, lazy loading, AsNoTracking, bulk ops - and how to fix each in .NET 10.
-
EF Core at scale: 5 ways to retrieve large datasets efficiently
blog.elmah.io Issue #478
EF Core (Entity Framework Core) is a fast ORM. However, once dataset entries increase by another 0, things start to break down. Fetching and filtering of data adds to processing time. Looking at this ...
-
EF Core 11 makes your split queries faster
steven-giesel.com Issue #477
If you use AsSplitQuery anywhere in your codebase, EF Core 11 has a present for you: your queries get faster.
-
5 Sneaky .NET & EF Core Bugs That Will Crash Your App
c-sharpcorner.com Issue #477
Discover 5 hidden .NET & EF Core bugs causing app crashes, from concurrency issues to silent query filters. Learn how to fix them!
-
Rate Limiting, OpenTelemetry, MAUI and Dapper
DotNetNews Issue #476
Covers .NET 11 behavior changes, API protection, Dapper, vertical slice architecture, NuGet risk checks, Blazor setup, and AI tooling workflows.
-
EF Core without migrations - it's only a matter of time
roundthecode.com Issue #474
Learn why EF Core without migrations is a disaster. Learn how to setup, configure, and deploy using migrations to keep databases consistent across environments. The page EF Core without migrations - i...
-
PagedResults in EF Core: One class, endless reuse
roundthecode.com Issue #474
Learn how to build a reusable PagedResults class in .NET that works with Entity Framework Core and supports multiple entity types. The page PagedResults in EF Core: One class, endless reuse appeared o...
-
.NET Core Reverse API and Reverse Engineering – Complete Guide
c-sharpcorner.com Issue #474
Explore .NET Core reverse APIs and reverse engineering! Learn integration with HttpClient, EF Core scaffolding, authentication, and best practices for efficient development.
-
Running a production-like local environment with Aspire
timdeschryver.dev Issue #473
Prevent integration surprises in production by using Aspire to run local dependencies in a consistent, production-like setup, with Azure Blob Storage and Azurite as a practical example.
-
Handling Audit Fields in .NET Core Cleanly with AutoMapper Context Items
medium.com Issue #472
🧩 The Requirement
-
How to Integrate Claude AI with .NET Applications
c-sharpcorner.com Issue #472
Learn how to integrate Claude AI with .NET applications using ASP.NET Core, C#, and Claude API. Build AI chatbots, assistants, and enterprise apps.
-
EF Core Auditing Using Interceptors: Step-by-Step Tutorial
c-sharpcorner.com Issue #472
Learn how to implement EF Core auditing using SaveChanges Interceptors. Track CreatedBy, ModifiedBy, timestamps, soft deletes, and user activity with practical examples.
-
.NET Data Community Standup: 8 Real-World Query Anti‑Patterns (and How to Fix Them)
youtube.com Issue #471
Join us for another show, where Chris Woodruff teaches us about 8 query anti-patterns and how to fix them. 🔗 Links: https://learn.microsoft.com/en-us/ef/core/learn-more/community-standups 🎙️ Featuri...
-
Entity Framework Core Interceptors: Real-World Use Cases and Examples
c-sharpcorner.com Issue #471
Learn Entity Framework Core Interceptors with real-world examples. Implement auditing, soft deletes, SQL logging, and performance monitoring in EF Core applications.
-
Database Connection Pooling vs DbContext Pooling in .NET
malshikay.medium.com Issue #469
When working with Entity Framework Core, many developers confuse database connection pooling with DbContext pooling. Although both improve…
-
Building a Full-Stack Task Manager App with .NET Core Web API + Angular 20
medium.com Issue #468
Build a complete Task Manager app with JWT auth, Angular Signals, and EF Core
-
Keep your chat context clean 👀 #VSCode
youtube.com Issue #468
Why Is It Called DbContext in Entity Framework?