data access
Entity Framework Core Articles, Tutorials & News
Entity Framework Core articles, tutorials, and news from the DotNetNews archive.
483 articles Updated Page 7 of 20
Browse additional Entity Framework Core articles from the DotNetNews archive.
Entity Framework Core articles
Page 7 of 20
Newest first
-
Fixing Broken LINQ Queries in EF Core: A Developer’s Troubleshooting Guide
medium.com Issue #348
Improve EF Core Performance by Understanding How LINQ Really Translates to SQL.
-
EF Core Performance Optimization Challenge | 233x FASTER in .Net 10
medium.com Issue #347
Let’s play a little EF Core game.
-
IEnumerable vs IQueryable — The Day This Finally Made Sense
medium.com Issue #347
The Real Reason Beginners Get Confused
-
One Trick To Improve EF Core Performance Using Query Splitting in .Net 10
medium.com Issue #347
One Trick To Improve EF Core Performance Using Query Splitting in .NET10
-
Will This New EF Core Feature Be the End of Dapper?
medium.com Issue #345
If you want the full source code, join our community: Here
-
Mastering owned entities in EF Core: Cleaner complex types
blog.elmah.io Issue #345
Not all data in your application should live as a standalone table with its own ID and lifecycle. Sometimes you need a tightly coupled dependent object that exists alongside its parent, like a movie's...
-
Stop Fighting SQL Queries Inside LINQ — Use This Simple Profiling Trick
medium.com Issue #344
(The invisible performance bug every .NET developer ships to production)
-
One LINQ Extension Method You NEED To Know For Cleaner EF Core Queries
medium.com Issue #344
(And Why It Will Completely Change How You Write EF Core Code)
-
The Better Way to Configure Entity Framework Core in .Net 9
medium.com Issue #343
Most people “configure EF Core” by slapping this into Program.cs and calling it a day:
-
How to Properly Handle Enums in EF Core (Conversions, Strings, and Flags)
medium.com Issue #343
A practical guide to mapping enums safely and cleanly in your .NET applications
-
Working With Database Transactions in EF Core 9: A Deep-Dive Guide for Real-World .NET
medium.com Issue #342
By someone who has broken production databases so you don’t have to.
-
From EF Core to Dapper — Is Raw SQL Worth the Hype?
medium.com Issue #342
📚 Found this article useful? You’ll love what I have in my store — Shop Now. What’s the story about? Everyone raves about Dapper’s raw…
-
Supercharging ASP.NET Core Apps with EF Core and AI
trevoirwilliams.com Issue #341
In this blog, I’ll explain in simple terms what ASP.NET Core and EF Core do, how AI fits into that picture, and how you can start adding AI features to your applications without rewriting everything f...
-
Repository Pattern vs Direct EF Core: The Great Debate
medium.com Issue #341
Should you use the Repository Pattern or work directly with DbContext? Explore both approaches with practical examples, performance…
-
Split Queries in EF Core (.NET 9): When to Use Them (and When to Run)
medium.com Issue #340
If you’ve ever pulled a big object graph with multiple collections and watched your API crawl (or your memory spike), you’ve probably met…
-
How to Optimize EF Core Query Performance with Compiled Queries in .NET 9
medium.com Issue #340
Part 1: Why My Fast Database Got Slow (And How Compiled Queries Saved It)
-
Migration Conflicts in EF Core: How to Fix Duplicate, Missing, or Broken Migrations
medium.com Issue #340
A comprehensive guide to diagnosing and resolving EF Core migration conflicts in modern .NET applications
-
Stop Writing 10 Repository Methods for One Query! — Harness the Specification Pattern in EF Core
medium.com Issue #339
What’s the story about? It’s the morning after an API launch. A simple new endpoint — “Get gatherings by creator name and include…
-
Will This New EF Core Feature Be the End of Dapper?
medium.com Issue #339
If you want the full source code, join our community: Here
-
EF Core 10 Just Dropped — And It Might Be the Biggest Upgrade .NET Has Ever Seen
blog.stackademic.com Issue #339
A deep, practical exploration of the most ambitious EF release yet, packed with new performance features, powerful LINQ upgrades, and… Continue reading on Stackademic »
-
Optimistic Locking vs Pessimistic Locking with EF Core (.NET 9): The Clear, Battle-Tested Guide
medium.com Issue #338
.NET Day on Agentic Modernization Coming Soon
-
.NET’s SqlBulkCopy with Python
cortlandgoffena.medium.com Issue #338
If you’ve ever used Python to interact with SQL Server, you know that Python is treated like a 3rd party citizen. If you’re using…
-
Wait — Isn’t DbContext Already a Repository?
medium.com Issue #338
The Real-World Case for the Repository Pattern in Clean Architecture & .NET 8 (with EF Core)
-
Domain-Driven Design Without an ORM Using the Snapshot Pattern
medium.com Issue #338
📘 PART 1 — Why You Don’t Need an ORM in DDD (And How the Snapshot Pattern Saves the Day)
-
Using sortable UUID / GUIDs in Entity Framework
steven-giesel.com Issue #338
.NET 9 introduced Guid.CreateVersion7() / Guid.CreateVersion7(DateTimeOffset) methods to create sortable UUIDs / GUIDs based on the time of their creation. This can be particularly useful in databases...