data access
Entity Framework Core Articles, Tutorials & News
Entity Framework Core articles, tutorials, and news from the DotNetNews archive.
483 articles Updated Page 3 of 20
Browse additional Entity Framework Core articles from the DotNetNews archive.
Entity Framework Core articles
Page 3 of 20
Newest first
-
Building a RAG store with Entity Framework
medium.com Issue #464
On its own, an LLM doesn’t know everything, especially if you want to use it inside your own proprietary business system. It couldn’t have…
-
Repository Pattern in .NET 10 - Do You Really Need It?
codewithmukesh.com Issue #463
I have shipped 50+ .NET APIs and most did not need a Repository Pattern. My sharp .NET 10 verdict on when to use it, when to skip it, what to use instead.
-
Repository Pattern with Entity Framework Core in .NET 10 | Clean Architecture Simplified
medium.com Issue #463
Building scalable applications in .NET 10 is not only about writing APIs — it is about writing maintainable code. That is why many…
-
EF Core without migrations - it's only a matter of time
roundthecode.com Issue #462
Learn why EF Core without migrations is a disaster. Learn how to setup, configure, and deploy using migrations to keep databases consistent across environments. The page EF Core without migrations - i...
-
State Machines in .NET: Modelling Uber’s Trip Lifecycle with EF Core
medium.com Issue #460
A trip isn’t just data — it’s a lifecycle. Requested, assigned, en route, completed, cancelled. Get the transitions wrong, and two drivers…
-
10 EF Core Performance Mistakes (and How to Fix Them) in .NET 10
codewithmukesh.com Issue #459
10 EF Core performance mistakes that ship to production - N+1 queries, missing projections, lazy loading, AsNoTracking, bulk ops - and how to fix each in .NET 10.
-
.NET 11 Preview 4 is now available!
devblogs.microsoft.com Issue #458
Find out about the new features in .NET 11 Preview 4 across the .NET runtime, SDK, libraries, ASP.NET Core, .NET MAUI, C#, Entity Framework Core, and more! The post .NET 11 Preview 4 is now available...
-
38 | Entity Framework Core In ASP.NET Core 6 | EF Core 6 | Entity Framework | ASP.NET (Hindi/Urdu) (A7zfiZo5l3)
news.google.com Issue #457
38 | Entity Framework Core In ASP.NET Core 6 | EF Core 6 | Entity Framework | ASP.NET (Hindi/Urdu) (A7zfiZo5l3)
-
Optimistic Concurrency in EF Core 10: ASP.NET Core Web API Guide
codewithmukesh.com Issue #456
Learn how to prevent data conflicts in ASP.NET Core Web API using optimistic concurrency with EF Core 10. RowVersion tokens, conflict resolution, retry strategies, and a decision matrix.
-
Three EF Core Bugs That Quietly Kill Production .NET Apps (And How to Catch Them Early)
medium.com Issue #452
A field guide for .NET teams who’ve outgrown “it works on my machine” — covers EF Core 8, 9, and 10
-
ASP.NET Web API CRUD Operations
news.google.com Issue #451
ASP.NET Web API CRUD Operations - .NET8 And Entity Framework Core Tutorial (yY7pLCuHov)
-
Get Started With ENTITY FRAMEWORK In C#! (rhtBVESaBp)
news.google.com Issue #450
Get Started With ENTITY FRAMEWORK In C#! (rhtBVESaBp)
-
Cleaning Migrations in EF Core 10 - Squash, Reset & Manage History
codewithmukesh.com Issue #448
Learn when and how to clean EF Core 10 migrations. Squash, reset, remove, resolve team conflicts, plus a decision matrix for the right cleanup strategy.
-
Running Migrations in EF Core 10 - 5 Ways Compared
codewithmukesh.com Issue #448
Learn 5 ways to apply EF Core 10 migrations: CLI, Migrate(), SQL scripts, migration bundles, and EnsureCreated. Includes a decision matrix and production checklist.
-
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, ...