data access
Entity Framework Core Articles, Tutorials & News
Entity Framework Core articles, tutorials, and news from the DotNetNews archive.
544 articles Updated Page 9 of 22
Browse additional Entity Framework Core articles from the DotNetNews archive.
Entity Framework Core articles
Page 9 of 22
Newest first
-
Master EF Core Relationships & Migrations Like a Pro
nelsonyounus.medium.com Issue #355
ASP.NET Community Standup - ASP.NET Core planning kickoff for .NET 11
-
EF Core Bulk Data Retrieval: 5 Methods You Should Know
antondevtips.com Issue #355
Learn how to efficiently retrieve large datasets in Entity Framework Core without hitting SQL Server's 2,100 parameter limit. Discover 5 bulk data retrieval methods from Entity Framework Extensions th
-
EF Core vs Dapper: Choosing the Right Tool in Real-World .NET Applications
achuchiwilliam.medium.com Issue #355
Choosing a data access strategy in .NET is rarely about picking the most popular library. It’s about understanding trade-offs, performance…
-
Day 6: Indexing in Entity Framework
medium.com Issue #353
You’ll find that any foreign keys that get created get automatically indexed. This creation will be found in your migration. But, what if…
-
One Minute Knowledge: Is ToArrayAsync or ToListAsync faster for Entity Framework?
steven-giesel.com Issue #352
Short question, and a short answer: ToListAsync - but why?
-
LINQ in Real Projects: 7 Patterns Every C# Developer Should Know
towardsdev.com Issue #352
Most developers only use LINQ for .Where() and .Select(). Continue reading on Towards Dev »
-
Building a Database Schema for Workflow Automation with .NET 8 and Entity Framework
medium.com Issue #350
What if You Could Manage Every Workflow in a Single System?
-
EF Core 10 Makes Outer Joins Beautiful Again: Goodbye DefaultIfEmpty()
medium.com Issue #350
or years, developers using Entity Framework (EF) or EF Core have faced a recurring challenge: expressing LEFT JOIN or RIGHT JOIN…
-
EF Core Was Fast… Until Lazy Loading Destroyed My App
medium.com Issue #348
When it comes to working with .NET EF Core, the first thing that comes to mind is — High Performance ORM. Yes, EF Core is really fast… Continue reading on Dot Net, API & SQL Learning »
-
Why Your LINQ Is Generating SQL You Didn’t Expect — And How to See the Truth
medium.com Issue #348
(And the ONE profiling trick every senior .NET dev should use)
-
Why I Use The Unit of Work Pattern With EF Core | Clean Architecture in .NET 9
medium.com Issue #348
If you want the full source code, download it from this link: https://www.elitesolutions.shop/
-
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…