data access
Entity Framework Core Articles, Tutorials & News
Entity Framework Core articles, tutorials, and news from the DotNetNews archive.
506 articles Updated
This DotNetNews topic collects Entity Framework Core tutorials material from the daily archive. Entity Framework Core is part of the data-access layer most .NET apps rely on, whether the store is relational or document-oriented. The page is for people who already ship C# and need a faster way to find relevant posts.
Expect publisher tutorials, release notes, architecture write-ups, and field notes linked from DotNetNews issues. Start here is a short editorial shortlist for Entity Framework Core; the archive list is chronological and larger. Nothing here claims every article was production-tested by the editors.
Recurring subtopics in recent issues include EF Core tutorials, EF Core migrations, EF Core performance, and LINQ EF Core. Secondary angles such as Entity Framework Core and EF Core tutorials appear when the archive actually covered them. Related hubs such as Dapper for C# and .NET and SQL Server for C# and .NET cover adjacent problems.
Start here
Editor picks for EF Core
-
The Migration That Lied for Two Years
rogerkeizer.medium.com Issue #504
Covers the Migration That Lied for Two Years.
-
Fastest Way to Bulk Insert Thousands of Rows in EF Core
codewithmukesh.com Issue #502
Covers fastest Way to Bulk Insert Thousands of Rows in EF Core.
-
Entity Framework Core Performance Tuning for Large Applications
c-sharpcorner.com Issue #501
Optimize EF Core for large apps: Boost performance with AsNoTracking, pagination, indexing, caching, and more.
-
EF Core Migration Bundles: What They Are & Why They Matter
medium.com Issue #501
Migration bundles are still underused; this is a useful operational topic.
-
The C# 14 field Keyword Looks Like Free Cleanup. It Can Still Break Your EF Core Mapping
c-sharpcorner.com Issue #501
C# 14 field keyword can break EF Core backing-field mapping and reflection code.
-
Track every EF Core record change with temporal tables
roundthecode.com Issue #499
Temporal tables remain one of the most useful underused SQL Server features, and this walks through the EF Core side clearly.
-
Stop Over-Fetching: Master EF Core Projections for Faster, Leaner APIs
bogdan-hatis.medium.com Issue #498
If your APIs are slow, projections are one of the highest-value EF Core habits to build early.
-
EF Core and Azure SQL Database: A Step-by-Step Guide
antondevtips.com Issue #498
Practical guide for getting EF Core working cleanly against Azure SQL, including resiliency and passwordless access.
Archive
Page 1 of 21
Newest first
-
PostgreSQL 18 Performance Tuning for EF Core Applications
c-sharpcorner.com Issue #514
Optimize PostgreSQL 18 for EF Core apps. Learn to tune queries, use indexes, manage data loading, and implement a repeatable performance tuning process.
-
EF Core 10 Performance Tuning: Tracking, Query Filters, Compiled Queries, and Bulk Operations
c-sharpcorner.com Issue #513
Boost EF Core 10 performance with AsNoTracking, query filters, compiled queries, and bulk operations. Optimize your data access layer.
-
Building Zero-Downtime Database Migrations with EF Core 11
c-sharpcorner.com Issue #512
Master zero-downtime database migrations with EF Core 11 using the Expand-Contract pattern for seamless, production-ready deployments.
-
IQueryable vs IEnumerable in C# — The Difference Every .NET Developer Should Know
medium.com Issue #511
If you’ve worked with LINQ or Entity Framework, you’ve almost certainly seen these two interfaces:
-
Understanding Entity Framework Core Migrations
c-sharpcorner.com Issue #511
Master Entity Framework Core Migrations for seamless database schema management. Keep your database in sync with evolving C# models using the Code First approach.
-
Modernizing a Legacy Enterprise Application Using .NET 6 Microservices, React, EF Core and ActiveMQ
c-sharpcorner.com Issue #511
Modernize legacy apps with .NET 6 microservices, React, EF Core, and ActiveMQ for independent evolution, scalability, and operational control.
-
Data Access and Persistence in .NET
medium.com Issue #510
In Part 1, I wrote about boundaries. In Part 2, I wrote about aggregates and invariants. In Part 3, I wrote about domain events. In Part 4…
-
EF Core Performance Benchmarks: 12 Mistakes That Hurt Query Speed
c-sharpcorner.com Issue #510
Unlock EF Core performance! Discover 12 common mistakes hurting query speed and learn production-ready solutions for faster applications.
-
Why Every EF Core Developer Needs to Try Entity Framework Extensions
medium.com Issue #509
When building data-intensive applications with Entity Framework Core, you will eventually face a critical performance challenge: inserting… Continue reading on Towards Dev »
-
Entity Framework Core Performance Anti-Patterns in Production
c-sharpcorner.com Issue #509
Master EF Core performance! Avoid common anti-patterns like N+1 queries, over-fetching, and client-side evaluation for faster, scalable .NET apps.
-
EF Core Is Already a Repository. Stop Wrapping It in Another One.
medium.com Issue #509
Open a lot of .NET projects and you’ll find the repository pattern sitting on top of Entity Framework Core. IProductRepository, GetById…
-
Slow pagination in EF Core? Try keyset pagination
roundthecode.com Issue #509
Learn how keyset pagination works in Entity Framework Core, how it compares to offset pagination, and how indexes can dramatically improve your pagination performance.
-
Mastering EF Core Performance Everything I Learned About Writing Faster Queries
bvsreyanth.medium.com Issue #509
Hi Everyone 👋
-
The N+1 Query Problem in EF Core (And How to Spot It Before Production Does)
medium.com Issue #508
A page that felt fine in testing is slow in production. Same code, same query, but now it crawls. You open the SQL log and there it is —…
-
After Four Years with Entity Framework Core, EF Core 10 Finally Feels Worth the Upgrade
medium.com Issue #507
After 4 Years of Using Entity Framework Core, EF Core 10 Is the First Upgrade That Actually Makes Me Want to Migrate
-
Entity Framework Core 11: New Features and Performance Enhancements
c-sharpcorner.com Issue #507
Discover EF Core 11's performance boosts, new features, and best practices for faster .NET data access and efficient database management.
-
Entity Framework Core 10 Performance Tuning: 25 Production Optimization Techniques
c-sharpcorner.com Issue #506
Master EF Core 10 performance! Discover 25 production optimization techniques for faster, scalable .NET data access. Boost your app's speed.
-
EF Core Performance Tips for Faster Queries
c-sharpcorner.com Issue #506
Boost EF Core performance with essential tips: select only needed columns, use AsNoTracking, filter at DB, avoid N+1, and monitor SQL.
-
Entity Framework Core 11 Migrations: Best Practices for Production Deployments
c-sharpcorner.com Issue #505
Master EF Core 11 migrations for production. Learn best practices for safe deployments, avoiding downtime, and ensuring data integrity.
-
How I Cut an EF Core Endpoint’s Response Time by 50% With Dapper and Raw SQL
medium.com Issue #505
The execution plan, the missing index, and the raw SQL query that saved one job portal’s busiest page.
-
The Migration That Lied for Two Years
rogerkeizer.medium.com Issue #504
How an outdated CLI tool left behind a corrupt EF Core snapshot — and why a major upgrade finally exposed it
-
Fastest Way to Bulk Insert Thousands of Rows in EF Core
codewithmukesh.com Issue #502
Benchmark the fastest way to bulk insert thousands of rows in EF Core 10 - AddRange vs EFCore.BulkExtensions vs SqlBulkCopy and Npgsql COPY, with real numbers.
-
IEnumerable vs IQueryable: Ask this question first
medium.com Issue #502
While searching differences between IEnumerable vs IQueryable, we generally find below explanation : Continue reading on Women in Technology »
-
Entity Framework Core Performance Tuning for Large Applications
c-sharpcorner.com Issue #501
Optimize EF Core for large apps: Boost performance with AsNoTracking, pagination, indexing, caching, and more.
-