data access
Entity Framework Core Articles, Tutorials & News
Entity Framework Core articles, tutorials, and news from the DotNetNews archive.
544 articles Updated Page 7 of 22
Browse additional Entity Framework Core articles from the DotNetNews archive.
Entity Framework Core articles
Page 7 of 22
Newest first
-
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.
-
Clean Architecture With Document Databases, Minimal APIs, and CQRS in .NET 10
medium.com Issue #411
Part 1 — Laying a Rock-Solid Foundation Continue reading on Stackademic »
-
From Spaghetti to Clean Architecture: How to Decouple EF Core without Over-Engineering
medium.com Issue #409
Let’s be honest. We all love the idea of greenfield projects. But in the real world, the most impactful engineering work happens in the…
-
How to Use Entity Framework Core Migrations in Production?
c-sharpcorner.com Issue #408
Safely deploy EF Core migrations in production! Learn best practices for script-based deployments, zero-downtime strategies, CI/CD integration, and rollback plans. Ensure reliable database evolution.
-
What’s the Fastest Way to Save Large Amounts of Data in .NET?
medium.com Issue #408
If you’ve ever needed to save a large amount of data to a database in .NET, you’ve probably wondered: What’s the fastest way to do it?
-
Polymorphic Relationships in EF Core: Three Approaches
blog.elmah.io Issue #407
Database schema and entity design are the pavement of most applications. If the entities are paved well, the application can provide great performance. Otherwise, it can lead to pitfalls. One key aspe...
-
From Spaghetti to Clean Architecture: How to Decouple EF Core without Over-Engineering
medium.com Issue #405
Let’s be honest. We all love the idea of greenfield projects. But in the real world, the most impactful engineering work happens in the…
-
How to Use Entity Framework Core Migrations in Production?
c-sharpcorner.com Issue #404
Safely deploy EF Core migrations in production! Learn best practices for script-based deployments, zero-downtime strategies, CI/CD integration, and rollback plans. Ensure reliable database evolution.
-
What’s the Fastest Way to Save Large Amounts of Data in .NET?
medium.com Issue #404
If you’ve ever needed to save a large amount of data to a database in .NET, you’ve probably wondered: What’s the fastest way to do it?
-
Polymorphic Relationships in EF Core: Three Approaches
blog.elmah.io Issue #403
Database schema and entity design are the pavement of most applications. If the entities are paved well, the application can provide great performance. Otherwise, it can lead to pitfalls. One key aspe...
-
01. EF Core in Real Life — Why ORMs Matter
akash-shah.medium.com Issue #399
When I started my career in with ASP.NET, I wrote everything using ADO.NET.
-
Stop Bleeding Performance: The Ultimate Guide to EF Core with Massive Datasets
medium.com Issue #399
How to tame Entity Framework Core when your database has millions of rows — and why your LINQ queries might be silently destroying your…
-
Pagination, Sorting & Searching in ASP.NET Core Web API
codewithmukesh.com Issue #398
Implement pagination, sorting, and searching in ASP.NET Core Web API with EF Core 10. Offset & keyset pagination, dynamic sorting, and performance tips.
-
-
How LeftJoin and RightJoin Work in EF Core .NET 10
roundthecode.com Issue #394
Learn how LeftJoin and RightJoin work in EF Core .NET 10, replacing complex GroupJoin patterns and simplifying left and right joins in LINQ. The page How LeftJoin and RightJoin Work in EF Core .NET 10...
-
I Misused C# Records for 12 Months — The Painful Lessons Real Production Code Taught Me
blog.stackademic.com Issue #394
Why my obsession with immutability backfired in ASP.NET Core projects, broke EF Core tracking, and forced a refactor I never saw coming. Continue reading on Stackademic »
-
Coding agents, MVC, and runtime internals
DotNetNews Issue #393
A varied .NET roundup covering an AI coding-agent explorer, MVC and Minimal API guides, EF Core transactions, caching, and runtime async internals.
-