data access
Entity Framework Core Articles, Tutorials & News
Entity Framework Core articles, tutorials, and news from the DotNetNews archive.
544 articles Updated Page 14 of 22
Browse additional Entity Framework Core articles from the DotNetNews archive.
Entity Framework Core articles
Page 14 of 22
Newest first
-
From Bug Farm to Bulletproof: Mastering DbContext vs IDbContextFactory (Without Burning Your App)
medium.com Issue #275
Last month I was wiring a Blazor Server page to vault credit cards (hola, Worldpay!) Continue reading on .Net Programming »
-
EFCore.Visualizer - View Entity Framework Core query plan inside Visual Studio
devblogs.microsoft.com Issue #274
This is a guest blog from Giorgi Dalakishvili, the developer of EFCore.Visualizer. Entity Framework Core is a powerful, feature-rich ORM powering many of today's applications. W
-
The EF Core Tuning Guide Microsoft Forgot to Write
medium.com Issue #274
Part 3 of The .NET 9 Cookbook Series Continue reading on .Net Programming »
-
Entity Framework Unveiled: A Comprehensive Guide to .NET’s Premier ORM
c-sharpcorner.com Issue #274
Explore Entity Framework, .NET's ORM, simplifying data access. Learn modeling, querying, migrations, and best practices for building scalable applications.
-
Boost Your EF Core Productivity in PostgreSQL With Entity Developer
antondevtips.com Issue #272
Model-First approach: instead of hand-writing your models and configurations, you design them visually. Continue reading on CodeX »
-
Database Indexing in .NET with EF Core — Boost Your Query Performance
medium.com Issue #272
Learn how to improve query performance in your .NET applications using database indexing with Entity Framework Core. Includes examples…
-
Build Master-Detail Pages in ASP.NET Core MVC — Part 2
bipinjoshi.net Issue #271
In the previous part of this article series, we introduced the sample application and built the EF Core model, which includes the Team, TeamMember, and AppDbContext classes. In this installment, we'll...
-
Entity Framework is a $100 Million Mistake ( We Use Dapper + Raw SQL)
isitvritra101.medium.com Issue #270
Your database queries are costing you users.
-
Entity Framework or Dapper: which one is better for .NET/C#?
medium.com Issue #270
There’s no right answer. Each of these ORMs has its own strengths. However, to figure out which one is more suitable for you at the moment…
-
6 Entity Framework Core Performance Pitfalls (and How to Fix Them)
medium.com Issue #270
Avoid these 6 common Entity Framework Core performance pitfalls in .NET — with real-world scenarios, root causes, and refactors.
-
-
EF Core + Code First “from zero to mastery” Tutorial
medium.com Issue #269
1) Introduction to EF Core and the Code First Approach
-
Entity Framework Performance Tuning: Tips for Faster Queries
medium.com Issue #269
Best Practices for Optimizing EF Core Performance in .NET
-
Soft Deletes using EF Core Interceptors
c-sharpcorner.com Issue #268
Learn how to implement soft deletes in EF Core using interceptors. Mark entities as deleted without removing them, apply global query filters, and ensure automatic, transparent handling of deleted rec...
-
How to not return all properties in SqlRaw
steven-giesel.com Issue #268
Entity Frameworks SqlRaw has a small, sometimes annoying limitation: The SQL query must return data for all properties of the entity type. Sometimes that isn't desireable, so let's overcome that s...
-
EF Core Performance Secrets: Querying at Warp Speed
medium.com Issue #268
Advanced optimization techniques to make Entity Framework Core handle massive datasets with minimal latency.
-
Implementing Audit Logs in EF Core Without Polluting Your Entities
blog.elmah.io Issue #268
Most modern applications require the historical audit logging of changes made to database entities. The audit log provides you with insights into all changes made, including their timestamps and the u...
-
Everything You Need to Know About the Latest in C#
youtube.com Issue #267
Async EF Core: Supercharging Queries with ValueTask & AsNoTracking
-
The Better Way to Configure Entity Framework Core
medium.com Issue #266
If you want the full source code, download it from this link: https://www.elitesolutions.shop/
-
5 Easy EF Core Performance Tricks Every .NET Developer Should Know
medium.com Issue #265
When I first started building apps with Entity Framework Core, I felt like I had unlocked some sort of ORM magic.
-
Build Next-Gen AI Apps with .NET and Azure
youtube.com Issue #264
10 Real-World Ways to Make Your EF Core Queries Faster
-
Mastering EF Core: A Deep Dive into High-Performance Data Access for Modern .NET Developers
blog.yaseerarafat.com Issue #264
Dive beyond CRUD with EF Core mastery. Debug, optimize, and architect like a pro in a vivid neon-lit future of data-driven development.
-
Entity Framework Core Tip: When to use .Include() vs .Select()
c-sharpcorner.com Issue #264
When querying in Entity Framework Core, both.Include() and .Select() can help shape your data — but they serve different purposes.
-
Read only properties on Domain object using Entity Framework Core
josef.codes Issue #263
Storing immutable domain objects directly with Entity Framework Core using value converters and private backing fields to handle read-only collections and custom types.
-
LINQ : Advanced Techniques Every .NET Developer Should Master in 2025
medium.com Issue #261
Write LINQ that reads like C# and runs like SQL—clean and fast.