data access
Entity Framework Core Articles, Tutorials & News
Entity Framework Core articles, tutorials, and news from the DotNetNews archive.
544 articles Updated Page 13 of 22
Browse additional Entity Framework Core articles from the DotNetNews archive.
Entity Framework Core articles
Page 13 of 22
Newest first
-
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 »
-
6 .NET ORM Frameworks Worth Bookmarking
medium.com Issue #290
In .NET development, Entity Framework (EF) Core is undoubtedly the king of the data access layer. It’s powerful, well-supported, and…
-
How to Choose the Right Loading Strategy in EF Core?
c-sharpcorner.com Issue #289
This article dives into Eager Loading and Lazy Loading strategies, explaining their pros, cons, and practical examples using Customers and Orders. Learn when to use each approach to optimize database ...
-
Building a Modern Microservices Application with .NET Core, Angular 20, Docker, and Azure
c-sharpcorner.com Issue #288
Build a modern microservices application using .NET Core 7, Angular 20, Docker, and Azure. This comprehensive guide covers backend development with .NET API and EF Core, frontend implementation with A...
-
Choosing the Right Dependency Injection Pattern in C#: Unit of Work vs. Repository
medium.com Issue #286
When building applications in C#/.NET, especially with Entity Framework Core, many developers struggle with the right way to inject data…
-
The Better Way to Configure Entity Framework Core
medium.com Issue #286
If you want the full source code, download it from this link: https://www.elitesolutions.shop/
-
Practical Specification Pattern in .NET 9: From Queries to Clean Architecture
medium.com Issue #285
Level Up Your Query Logic: Using the Specification Pattern with .NET 9, Entity Framework Core, and Repository
-
EF Core Bulk Operations
c-sharpcorner.com Issue #284
Optimize EF Core performance when dealing with large datasets! This article explores various bulk operation techniques, from built-in options like ExecuteUpdate/Delete to powerful third-party librarie...
-
Entity Framework Core (EF Core) loading strategies
medium.com Issue #282
Imagine we have a Marketplace application. - And we have one interface show just Stores Data like name , address, location, and phone … Continue reading on easydotnet »
-
What is AsNoTracking()?
medium.com Issue #282
Imaging we have a marketplace application, and for example we have a page show all stores with there infos like address and name … So here… Continue reading on easydotnet »
-
Your Next API Won’t Be REST — It’ll Be a Copilot Skill
medium.com Issue #282
Why This Blog Matters Continue reading on Dev Genius »
-
Visualizing LINQ Queries with LINQPad: Boost Your EF Core Debugging
blog.elmah.io Issue #281
Ever feel exhausted debugging a complex EF Core query? Do you wonder what went wrong in the EF Core LINQ query spaghetti that hinders the results? At one end, EF Core and LINQ accelerate the developme...
-
IEnumerable vs IQueryable in C#: The Key Differences
medium.com Issue #279
If you’ve been coding in C# for a while, you’ve probably bumped into IEnumerable and IQueryable.
-
How To Optimize EF Core Query Performance With Compiled Queries
medium.com Issue #279
Entity Framework Core’s compiled queries are one of the most underutilized performance optimization features available to .NET developers…
-
Data Seeding in ASP.NET Core the Right Way
medium.com Issue #279
Data seeding is the secret sauce that turns empty databases into playgrounds for testing and development.
-
The One Line That Made My LINQ 5× Faster (You’re Still Writing It Wrong)
blog.devgenius.io Issue #278
Why This Blog Matters Continue reading on Dev Genius »
-
Unit of Work in EF Core: Managing Transactions the Right Way
medium.com Issue #277
Building a Unit of Work with EF Core
-
Boosting Performance in EF Core with Second-Level Cache (Without External Packages)
medium.com Issue #276
Applying the Repository Pattern for Cached Data Access.