Entity Framework Core Articles, Tutorials & News
Entity Framework Core articles, tutorials, and news from the DotNetNews archive.
486 articles Updated Page 10 of 20
Entity Framework Core articles, tutorials, and news from the DotNetNews archive.
Entity Framework Core articles
Page 10 of 20
Newest first
-
Implementing Soft Delete in Entity Framework Core with Generic Repository
medium.com Issue #306
Why Soft Delete?
-
EF Core DBContext Entities configuration refactoring
medium.com Issue #306
I’ve noticed that many .NET projects have one thing in common — a very messy DbContext full of entity configuration code.
-
High Performance and Scalability in ASP.NET Core
c-sharpcorner.com Issue #305
This article provides actionable strategies for building blazing-fast web applications. Learn how to optimize asynchronous programming, middleware, caching, EF Core, and Kestrel configuration. Discove...
-
Implement UPSERT – Insert and Update using Fabric Data Pipeline
c-sharpcorner.com Issue #304
Discover how to efficiently implement UPSERT (Update or Insert) operations within Fabric Data Pipelines. This guide provides a practical approach to seamlessly manage data updates and insertions, ensu...
-
Dapper + Entity Framework Core (EF Core) together against PostgreSQL in .NET 8
c-sharpcorner.com Issue #304
Combine the power of Entity Framework Core (EF Core) for schema management and Dapper for raw SQL performance in .NET 8 with PostgreSQL. This guide explores two approaches: using EF Core for CRUD and ...
-
PLINQ in .NET: Supercharging LINQ with Parallelism
medium.com Issue #303
When performance meets simplicity
-
7 Ruthless EF Core Tweaks That Made My Query 233× Faster (with a Clean .NET 9 Example)
medium.com Issue #303
Look, EF Core is awesome… until it quietly turns your app into a potato. The good news? You don’t need a PhD to make it fly. I took a…
-
1 Sneaky EF Core Trick That Makes Heavy Includes Fast: Query Splitting (with a Clean .NET
medium.com Issue #302
If you want the full source code, join our community: Here
-
9 Practical Ways to Track Entity Changes in EF Core (with a Clean .NET 9 Audit Logger)
medium.com Issue #302
If you want the full source code, join our community: Here
-
.NET 10: The Deathblow to Python’s AI Dominance? 💀
gapvelocity.ai Issue #302
Python’s AI reign is toast. .NET 10 (LTS) isn't just an update; it's a weapon. Native vectors in EF Core, AI abstraction (IChatClient!), and performance that makes Python look like a tired, old script...
-
Optimistic vs Pessimistic Locking in EF Core Explained
medium.com Issue #302
Understand the difference between `optimistic` and `pessimistic` locking in EF Core with code examples.
-
Using Stored Procedures and Functions With EF Core and PostgreSQL
milanjovanovic.tech Issue #301
Learn how to use PostgreSQL stored procedures and functions with EF Core to handle complex queries, atomic operations with locking, and database-specific features while keeping the type safety and con...
-
Stop Fighting EF Core: How to Use Stored Procedures and Functions (The Right Way)
medium.com Issue #301
You’re building a .NET application with EF Core. Most of your queries work fine with LINQ, but now you’re hitting scenarios where you need…
-
7 No-Nonsense Steps to the Repository Pattern with EF Core (Clean Architecture, .NET
medium.com Issue #301
You know that feeling when your data access code starts spreading like ketchup on a white shirt? One query in the controller, another in…
-
-
Optimizing Entity Framework Core: Performance Tips Every Developer Should Know
medium.com Issue #299
Practical EF Core performance checklist: Key techniques every .NET
-
Why I Stand By the Unit of Work Pattern With EF Core in.NET 9’s Clean Architecture
medium.com Issue #296
.NET Framework - a powerful & flexible platform for building web-based applications
-
Exploring Bulk Operations in EF Core
codingsonata.medium.com Issue #295
Working with databases is at the heart of most .NET apps, and Entity Framework Core makes it easy to query and persist data. But when you…
-
Expression Trees in C#: Building Dynamic LINQ Queries at Runtime
blog.elmah.io Issue #295
Tired of endless if-else blocks just to build queries? What if your LINQ queries could write themselves at runtime? Today, we will unfold expression trees, which can be used to create dynamic queries ...
-
Lazy Loading vs Eager Loading in EF Core: Which One Should You Use?
medium.com Issue #295
When to prefer Lazy Loading in EF Core for small datasets, and when Eager Loading works best for APIs and dashboards.
-
Supercharge Your Data Access in.NET9: A Deep Dive into the Specification Pattern with EF Core
medium.com Issue #294
Write Faster SQL Queries With Dapper In .NET 9 | Clean Architecture
-
From Entity Framework to EF Core: What Every .NET Beginner Should Know
medium.com Issue #293
When developers talk about “EF” today, they usually mean Entity Framework Core (EF Core). But it wasn’t always like this. Entity Framework…
-
One Line, 40% Faster: The EF Core Fix Every .NET Developer Should Know
medium.com Issue #292
See how a simple code adjustment led to a huge performance jump — without rewriting queries or upgrading infrastructure.
-
One Trick To Improve EF Core Performance Using Query Splitting
medium.com Issue #290
When working with Entity Framework Core, there’s one simple technique that can dramatically improve performance for queries with multiple…
-
EF Core Performance Myths Busted: Real Benchmarks and Tuning Tips
javascript.plainenglish.io Issue #290
Everything you’ve heard about Entity Framework Core being “too slow” might be outdated. Here’s what real-world data shows — and how to… Continue reading on JavaScript in Plain English »