data access
Entity Framework Core Articles, Tutorials & News
Entity Framework Core articles, tutorials, and news from the DotNetNews archive.
506 articles Updated Page 2 of 21
Browse additional Entity Framework Core articles from the DotNetNews archive.
Entity Framework Core articles
Page 2 of 21
Newest first
-
The C# 14 field Keyword Looks Like Free Cleanup. It Can Still Break Your EF Core Mapping
c-sharpcorner.com Issue #501
C# 14 field keyword can break EF Core backing-field mapping and reflection code. Learn the risk and how to check your codebase first.
-
Building a Console-Based Vehicle Rental Management System Using N-Layer Architecture in C# and EF Core
c-sharpcorner.com Issue #500
Learn C# data management with Entity Framework Core. Set up connections, manage entities, and implement data operations for your applications.
-
Track every EF Core record change with temporal tables
roundthecode.com Issue #499
Learn how to track every change to your EF Core records using SQL Server temporal tables, with examples for querying the history. The page Track every EF Core record change with temporal tables appear...
-
Stop Over-Fetching: Master EF Core Projections for Faster, Leaner APIs
bogdan-hatis.medium.com Issue #498
Modern APIs rarely need every column from every related table.
-
EF Core and Azure SQL Database: A Step-by-Step Guide
antondevtips.com Issue #498
A step-by-step guide to using EF Core with Azure SQL Database - create the database in Azure Portal, connect and run migrations, add transient-fault resilience, and switch to passwordless Microsoft En
-
EF Core Interceptors: The Complete Guide (.NET 10)
codewithmukesh.com Issue #497
Learn EF Core interceptors in .NET 10 - all 7 types, how to register them, and how to add audit fields, soft deletes, and the current user without breaking dependency injection.
-
IQueryable vs IEnumerable: The Mistake That Loads Your Whole Table
medium.com Issue #497
You wrote a clean LINQ query. It filters down to ten rows. It runs fine in dev, and then in production it’s slow and your database CPU is…
-
How to insert-or-update without headache
csharpdigest.net Issue #496
Entity Framework Extensions fills the gap with BulkMerge across all major databases
-
Building AI-Powered Database Query Optimization Advisors with ASP.NET Core
c-sharpcorner.com Issue #494
Build an AI-powered database query optimization advisor with ASP.NET Core, EF Core, and Azure OpenAI for faster queries, reduced costs, and improved scalability.
-
Building Flexible EF Core Queries with Query Objects
c-sharpcorner.com Issue #494
Master EF Core query flexibility with Query Objects. Build reusable, composable queries for maintainable, efficient data retrieval.
-
Specifications over LINQ spaghetti: composable, reusable query intent
medium.com Issue #494
A .Where(s => s.SpeakerId == id && !s.IsDeleted && s.IsPublished) copied into nine controllers is nine places to forget the authorization…
-
Optimizing Entity Framework Core Queries for Large-Scale Applications
c-sharpcorner.com Issue #493
Optimize EF Core queries for large-scale apps. Learn techniques like projection, AsNoTracking, pagination, and indexing for peak performance.
-
Bulk Operations in EF Core 10 - Benchmarking Insert, Update, and Delete Strategies
codewithmukesh.com Issue #490
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.
-
AI-Powered Database Schema Evolution Using Entity Framework Core
c-sharpcorner.com Issue #490
Enhance database schema evolution with Entity Framework Core and AI. Reduce risks, improve performance, and automate documentation for safer migrations.
-
Building AI-Powered SQL Query Performance Advisors with Entity Framework Core
c-sharpcorner.com Issue #490
Build AI-powered SQL query advisors with Entity Framework Core to automatically detect bottlenecks, optimize performance, and boost application responsiveness.
-
30 EF Core Interview Questions That Actually Get Asked in 2026
codewithmukesh.com Issue #488
30 real EF Core interview questions with great answers, red flags, and follow-ups. N+1, change tracking, migrations, concurrency - updated for EF Core 10.
-
Mastering .NET Interviews – Part 6: Entity Framework & Data Access
c-sharpcorner.com Issue #487
Master .NET interviews: Dive into Entity Framework (EF) & data access. Learn EF Core, LINQ, migrations, transactions, and common interview questions.
-
Building a Vehicle Rental Management System in C# Using Entity Framework Core
c-sharpcorner.com Issue #484
Build a Vehicle Rental Management System in C# Console App with EF Core, Repository Pattern, Session Management, and Email Integration.
-
Entity Framework Is Slow. It’s Not EF’s Fault.
medium.com Issue #484
Your API was quick in development. Then traffic picks up and a few endpoints start taking three seconds to respond.
-
Database Performance: Making Entity Framework Queries Faster
dotnettips.com Issue #484
The article discusses the advantages of using compiled queries in Entity Framework, especially for frequently executed and complex queries.
-
The Silent Database Killer: The N+1 Query Problem in EF Core
medium.com Issue #484
Your database might be slowly eaten alive by a hidden performance killer, without you even realising it. It’s called the N+1 query problem…
-
EF Core in Clean Architecture the Pragmatic Way
antondevtips.com Issue #484
A focused guide to using EF Core in Clean Architecture without repositories. Learn why the Dependency Rule still holds when your Application layer uses DbContext directly, how to keep your handlers sm
-
Stop Hand-Rolling Audit Logs in EF Core
iamrzr.medium.com Issue #483
Every team that touches regulated data eventually has the same meeting. Someone from compliance asks a deceptively simple question: who…
-
Why DbContext Is Scoped and Not Singleton
medium.com Issue #483
Understanding dependency injection lifetime, thread safety, and the unit-of-work pattern in Entity Framework
-
C#: What Is the Repository Pattern for Data Access with Entity Framework?
pietschsoft.com Issue #480
If you spend enough time building C# applications, you eventually run into this question: