Entity Framework Core Articles, Tutorials & News
Entity Framework Core articles, tutorials, and news from the DotNetNews archive.
486 articles Updated Page 4 of 20
Entity Framework Core articles, tutorials, and news from the DotNetNews archive.
Entity Framework Core articles
Page 4 of 20
Newest first
-
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.
-
Seeding Initial Data in EF Core 10 - HasData vs UseSeeding
codewithmukesh.com Issue #422
Seed initial data in EF Core 10 with HasData, UseSeeding, and Program.cs. Includes decision matrix, FK seeding, environment strategies, and pitfalls.
-
When NOT to use the repository pattern in EF Core
blog.elmah.io Issue #420
If you design an application with a data source, the repository pattern often comes to mind as a prominent choice. In fact, many developers see it as the default choice. However, the pattern is not he...
-
Bulk Operations in EF Core 10 - Benchmarking Insert, Update, and Delete Strategies
codewithmukesh.com Issue #419
Learn how to optimize bulk insert, update, and delete operations in EF Core 10. We benchmark 5 approaches with real numbers and a decision matrix for every scenario.
-
Multiple DbContext in EF Core 10 - Scenarios, Setup & Migrations
codewithmukesh.com Issue #419
When and how to use multiple DbContext in EF Core 10. Multi-database setup, schema separation, migrations, transactions, and modular monolith patterns.
-
Clean and Scalable Entity Configuration in Entity Framework Core (With Real Project Example)
medium.com Issue #418
When building modern applications with ASP.NET Core and Entity Framework Core, many developers start by configuring their entities…
-
Preventing Concurrency Conflicts in EF Core
trevoirwilliams.com Issue #416
Imagine a web application where multiple users interact with the same data simultaneously. This can lead to a concurrency conflict. Let us explore how you can effectively implement and manage these me...
-
Optimizing Bulk Database Updates in .NET: From Naive to Lightning-Fast
milanjovanovic.tech Issue #415
Seven approaches to bulk-updating rows in PostgreSQL from .NET using Dapper and EF Core, from naive per-row updates to binary COPY. Each step cuts down on round-trips or removes dynamic SQL entirely.
-
Global Query Filters in EF Core - Soft Delete, Multi-Tenancy & Named Filters in .NET 10
codewithmukesh.com Issue #414
Master global query filters in EF Core 10 with named filters, soft delete, multi-tenancy, IgnoreQueryFilters, and performance tips.