data access
Entity Framework Core Articles, Tutorials & News
Entity Framework Core articles, tutorials, and news from the DotNetNews archive.
483 articles Updated Page 6 of 20
Browse additional Entity Framework Core articles from the DotNetNews archive.
Entity Framework Core articles
Page 6 of 20
Newest first
-
EF Core Tricks for Bulk Reading Large Data Sets
codingsonata.medium.com Issue #376
Dive into the EF Core Tricks for Bulk reading Large Data Sets by exploring the 5 methods of Entity Framework Extensions of ZZZ Projects
-
7 Entity Framework Core Optimization Techniques
medium.com Issue #376
A summary of my work during my internship on a picking command handler, optimizing database operations in .NET applications with examples…
-
The Better Way to Configure Entity Framework Core
medium.com Issue #371
A Story About Control, Clarity, and Taking Back Ownership (With Real Code)
-
New in .NET 10 and C# 14: EF Core 10's Faster Production Queries
blog.elmah.io Issue #370
.NET 10 is officially out, along with C# 14. Microsoft has released .NET 10 as Long-Term Support (LTS) as a successor to .NET 8. Like every version, it is not just an update but brings something new t...
-
Repository Pattern: The Right Way to Free Your Code from the Database
medium.com Issue #369
When you apply the Repository Pattern correctly, the ORM you use becomes just an implementation detail.
-
When Scoped DbContext Fails — Real Production Scenarios
medium.com Issue #369
In Part 1, we learned why Scoped lifetime is the default for DbContext. One instance per HTTP request, shared across services…
-
Named Global Query Filters Were Updated in EF Core 10
antondevtips.com Issue #367
Explore Named Query Filters in EF Core 10: apply multiple filters to entities for soft deletion and multi-tenancy. Learn best practices with real-world code examples.
-
Async Pitfalls in EF Core: What Every .NET Developer Needs to Know
medium.com Issue #366
EF Core async methods are powerful tools for building scalable .NET
-
The “Mixed Mode Operations” Anti-Pattern in ORMs
medium.com Issue #366
When Your Change Tracker and Database Stop Agreeing
-
What Is the EF Core Model DbContext, OnModelCreating, and the Truth About Caching
medium.com Issue #364
Many developers using EF Core get confused by questions like: When is the Model created? Is it rebuilt every time a new DbContext is…
-
What Does typeof Really Do in C#? typeof, GetType() and IsAssignableFrom
medium.com Issue #362
When learning C#, you will inevitably come across typeof. Especially when reading EF Core, infrastructure, or framework-level code. For…
-
EF Core, Ad-Hoc Queries, and Plan Cache Pollution
medium.com Issue #365
How usecounts Reveals Hidden Performance Problems
-
Ef Core 10 Introduced LeftJoin and RightJoin
ravindradevrani.medium.com Issue #361
Previously there was no simple solution for left or right join. We had to use DefaultIfEmpty or GroupJoin and SelectMany. Continue reading on Towards Dev »
-
EF Core + LINQ: The Real-World Guide Every C# Developer Wishes They Had Earlier
towardsdev.com Issue #358
A practical, example-rich guide to understanding how LINQ behaves inside EF Core — with real problems, real fixes, and clean explana Continue reading on Towards Dev »
-
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/