Entity Framework Core Articles, Tutorials & News
Entity Framework Core articles, tutorials, and news from the DotNetNews archive.
486 articles Updated Page 12 of 20
Entity Framework Core articles, tutorials, and news from the DotNetNews archive.
Entity Framework Core articles
Page 12 of 20
Newest first
-
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.
-
What are the Best Practices for EF Core Performance Optimization?
c-sharpcorner.com Issue #261
Learn how to optimize Entity Framework Core (EF Core) for high-performance data access. This article covers best practices, from query tuning to memory management, with practical C# code examples. Ide...
-
Why You Should Learn About EF Core AsSplitQuery
medium.com Issue #261
For today we gonna learn to know about .AsSplitQuery() 😊
-
Disabling thread safety check in Entity Framework
steven-giesel.com Issue #261
In this blog post we will have a look into how to disable the thread safety check in Entity Framework. What are the implications of doing so and how to do it.
-
How do I Migrate from .NET Framework to .NET 6/7/8?
c-sharpcorner.com Issue #261
Migrating from the legacy .NET Framework to modern .NET 6, 7, or 8 can unlock massive performance, cross-platform support, and access to the latest tools. This guide walks you through a smooth and saf...
-
-
How To Implement Offset and Cursor-Based Pagination in EF Core
medium.com Issue #258
Efficient pagination is crucial for enhancing application performance and user experience, particularly when working with large datasets… Continue reading on CodeX »
-
How To Apply Global Filters With EF Core Query Filters in .NET 9
medium.com Issue #257
If you want the full source code, download it from this link: https://www.elitesolutions.shop/
-
Why I Use The Unit of Work Pattern With EF Core | Clean Architecture in .NET 9
medium.com Issue #256
Understanding Caching Strategies in .NET – A Practical Guide