data access
Entity Framework Core Articles, Tutorials & News
Entity Framework Core articles, tutorials, and news from the DotNetNews archive.
483 articles Updated Page 11 of 20
Browse additional Entity Framework Core articles from the DotNetNews archive.
Entity Framework Core articles
Page 11 of 20
Newest first
-
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.
-
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.
-