data access
Entity Framework Core Articles, Tutorials & News
Entity Framework Core articles, tutorials, and news from the DotNetNews archive.
544 articles Updated Page 4 of 22
Browse additional Entity Framework Core articles from the DotNetNews archive.
Entity Framework Core articles
Page 4 of 22
Newest first
-
Bulk Operations in EF Core 10 - Benchmarking Insert, Update, and Delete Strategies
codewithmukesh.com Issue #490
Learn how to optimize bulk insert, update, and delete operations in EF Core 10. We benchmark 5 approaches with real numbers and a decision matrix for every scenario.
-
AI-Powered Database Schema Evolution Using Entity Framework Core
c-sharpcorner.com Issue #490
Enhance database schema evolution with Entity Framework Core and AI. Reduce risks, improve performance, and automate documentation for safer migrations.
-
Building AI-Powered SQL Query Performance Advisors with Entity Framework Core
c-sharpcorner.com Issue #490
Build AI-powered SQL query advisors with Entity Framework Core to automatically detect bottlenecks, optimize performance, and boost application responsiveness.
-
30 EF Core Interview Questions That Actually Get Asked in 2026
codewithmukesh.com Issue #488
30 real EF Core interview questions with great answers, red flags, and follow-ups. N+1, change tracking, migrations, concurrency - updated for EF Core 10.
-
Mastering .NET Interviews – Part 6: Entity Framework & Data Access
c-sharpcorner.com Issue #487
Master .NET interviews: Dive into Entity Framework (EF) & data access. Learn EF Core, LINQ, migrations, transactions, and common interview questions.
-
Building a Vehicle Rental Management System in C# Using Entity Framework Core
c-sharpcorner.com Issue #484
Build a Vehicle Rental Management System in C# Console App with EF Core, Repository Pattern, Session Management, and Email Integration.
-
Entity Framework Is Slow. It’s Not EF’s Fault.
medium.com Issue #484
Your API was quick in development. Then traffic picks up and a few endpoints start taking three seconds to respond.
-
Database Performance: Making Entity Framework Queries Faster
dotnettips.com Issue #484
The article discusses the advantages of using compiled queries in Entity Framework, especially for frequently executed and complex queries.
-
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.