data access
Entity Framework Core Articles, Tutorials & News
Entity Framework Core articles, tutorials, and news from the DotNetNews archive.
544 articles Updated Page 6 of 22
Browse additional Entity Framework Core articles from the DotNetNews archive.
Entity Framework Core articles
Page 6 of 22
Newest first
-
IEnumerable vs IQueryable
rohitsakhare.medium.com Issue #445
The Difference That Decides Where Your Query Runs
-
30 .NET Interview Questions Every Developer Should Know (2 Years Exp)
developerchandan.medium.com Issue #445
Preparing for a mid-level .NET interview? Here are 30 must-know questions on C#, async/await, EF Core, DI, and memory management — with…
-
C# Entity Framework Tutorial | C Sharp Entity Framework Explained | C# Tutorial | Simplilearn (BN2K5qfOQG)
news.google.com Issue #445
C# Entity Framework Tutorial | C Sharp Entity Framework Explained | C# Tutorial | Simplilearn (BN2K5qfOQG)
-
Record vs Class in C#: When to Use What (With Real Examples & EF Core Guide)
akash-shah.medium.com Issue #444
Learn C# record vs class with examples, immutability, equality, EF Core limitations, and best practices for clean architecture.
-
Difference Between IEnumerable and IQueryable in C#
c-sharpcorner.com Issue #443
Feature IEnumerable IQueryable Execution Location In-memory Database / Remote Query Execution Immediate Deferred Performance Slower for large data Faster for large data Filtering Client-side Server-si...
-
EF Core Performance - N+1, Cartesian Explosion and How to Fix Both
medium.com Issue #443
ZZZ Projects’ EF Core Extensions Struggling with slow EF Core operations? Boost performance like never before. Experience up to 14× faster…
-
The Real Cost of Returning the Identity Value in EF Core
antondevtips.com Issue #442
Learn why EF Core SaveChanges becomes slow when inserting thousands of rows when returning identity values and how BulkInsert and BulkInsertOptimized from Entity Framework Extensions deliver up to 23x
-
Smart Query Splitting in Entity Framework Core: SmartSplitQueryInterceptor
blog.peakcyber.com Issue #441
One of the most common dilemmas when developing with Entity Framework Core (EF Core) is deciding whether to use Single Query or Split… Continue reading on PeakCyber Technologies »
-
Insane Performance Boost in EF Core using Entity Framework Extensions
medium.com Issue #441
ZZZ Projects’ EF Core Extensions Struggling with slow EF Core operations? Boost performance like never before. Experience up to 14× faster…
-
EF Core - Lazy Loading, Eager Loading, and Explicit Loading
medium.com Issue #439
Connect with me 👇
-
EF Core query translation: Why does some LINQ never become SQL?
blog.elmah.io Issue #439
We know that every Entity Framework Core (EF Core) LINQ query has a corresponding SQL query. That equivalent SQL is actually executed under the hood. Some LINQ expressions involve. NET-specific code, ...
-
Entity Framework Core: Perhaps the Most Beloved Tool of the .NET World
medium.com Issue #438
Entity Framework Core (EF Core) has become one of the most widely used and appreciated tools in the ASP.NET
-
EF Core Query Performance — How to Write Fast and Efficient Queries
akash-shah.medium.com Issue #437
Learn projection, AsNoTracking, indexing, and optimization techniques to build high-performance EF Core APIs.
-
What’s new in Entity Framework??
medium.com Issue #434
A practitioner’s deep dive into the architectural differences, performance gaps, and .NET 10-specific features that make EF Core the only…
-
Optimizing EF-Core Performance in Production: Lessons from the Real World
medium.com Issue #434
Entity Framework Core (EF Core) is powerful, productive, and widely used — but in production systems, it can easily become a performance…
-
Mastering the EF Core Change Tracker: Phantom Updates, Detached Entities, and Soft Deletes
medium.com Issue #434
If you have worked with Entity Framework Core for some time, you already know the usual flow: load data, change a few properties, and call…
-
If You Call .ToList() Before .Where(), You Have a Performance Issue
serkanozbeykurucu.medium.com Issue #433
You’re loading thousands of rows from the database. You’re filtering in memory. Your API response takes 3 seconds. You blame Entity…
-
EF Core transactions: Stop your data getting out of sync
roundthecode.com Issue #433
Learn how Entity Framework Core transactions prevent data inconsistencies and how isolation levels affect behaviour in your applications. The page EF Core transactions: Stop your data getting out of s...
-
Mapping database views in EF Core without breaking migrations
blog.elmah.io Issue #433
Entity Framework Core (EF Core) is working fine in your project. But the moment you use views, the migration gets messy. As a developer, I know any problem in the migration is haunting. You have to up...
-
Your EF Core Queries Are Lying to You: The N+1 Problem You’re Probably Shipping Right Now
serkanozbeykurucu.medium.com Issue #431
You wrote clean code. Your unit tests pass. The feature works in development. Then it hits production with 10,000 users, and suddenly the…
-
Introduction to Entity Framework Core — Complete Beginner Guide with Real-World Examples (.NET)
medium.com Issue #429
🚀 Introduction
-
Tracking vs. No-Tracking Queries in EF Core 10 - When to Use Each
codewithmukesh.com Issue #428
Tracking vs. no-tracking queries in EF Core 10 - benchmarks, memory analysis, AsNoTrackingWithIdentityResolution, and when to use each in ASP.NET Core Web APIs.
-
Why your Entity Framework Core app needs query filters
roundthecode.com Issue #427
Discover how EF Core query filters enforce global rules, simplify multitenancy, and clean up queries to stop sensitive data leaking into production. The page Why your Entity Framework Core app needs q...
-
-
Stop Using Entity Framework Core Wrong (I Did For 3 Years)
medium.com Issue #424
The mistakes were in the code I was most proud of.