data access
Entity Framework Core Articles, Tutorials & News
Entity Framework Core articles, tutorials, and news from the DotNetNews archive.
483 articles Updated Page 8 of 20
Browse additional Entity Framework Core articles from the DotNetNews archive.
Entity Framework Core articles
Page 8 of 20
Newest first
-
How AsNoTracking() Makes Your EF Core Queries Faster
miguelbarros1983.medium.com Issue #336
A Practical Proof of Concept Using BenchmarkDotNet
-
Building Read Models with EF Core Projections
blog.elmah.io Issue #335
You can't really argue against the importance of performance in any application. Even if the system is not time-critical, efficient and time-saving operations are cornerstones of the system. Data fetc...
-
Entity Framework DB First
medium.com Issue #334
Yazılım geliştirme dünyasında veri tabanı ile uygulama arasındaki iletişim, projenin omurgasını oluşturur. Modern uygulama geliştirmede…
-
Preventing Over-Posting and Under-Posting in EF Core Models
medium.com Issue #332
A practical guide to securing your .NET APIs by preventing over-posting, under-posting, and unintended EF Core data updates.
-
The Generic Repository Pattern with EF Core — Why It Sucks (and What to Do Instead)
medium.com Issue #331
If you want the full source code, join our community: Here
-
Working with Raw SQL in EF Core Without Losing Safety
medium.com Issue #331
How to safely execute raw SQL in EF Core using “FromSql”, interpolated queries, and parameter binding to prevent SQL injection.
-
Implementing the Outbox Pattern in ASP.NET Core for Reliable Message Delivery
c-sharpcorner.com Issue #330
Ensure reliable message delivery in ASP.NET Core with the Outbox Pattern. Learn how to implement it using EF Core and RabbitMQ/Kafka for robust microservices.
-
Build a Task Question Assignment Feature in ASP.NET Core (Step-by-Step)
c-sharpcorner.com Issue #330
Build a task assignment feature in ASP.NET Core! Learn to store, fetch, and display assigned questions using EF Core. Includes filtering and status updates.
-
.NET 10 & C# 14 Just Rewrote the Rulebook — 17 Features That Will Change How You Code Forever
blog.stackademic.com Issue #329
From file-based apps to EF Core’s JSON magic and Blazor’s WASM power-ups — discover the upgrades that will reshape API design… Continue reading on Stackademic »
-
EF Core Performance Improvements With The New ExecuteUpdate & ExecuteDelete in .NET
medium.com Issue #329
By: (Mori) A Complete Guide for .NET 9 Developers Continue reading on JavaScript in Plain English »
-
Create + Assign + List + Edit + Complete operations and role-wise views (Admin / Manager / User) ASP.NET Core MVC project
c-sharpcorner.com Issue #328
Build a complete ASP.NET Core MVC task management app with role-based views (Admin, Manager, User). Includes CRUD, assignment, and completion features using EF Core and Identity.
-
Build a Task Raised System in ASP.NET Core (Beginner to Advanced Guide)
c-sharpcorner.com Issue #328
Build a complete ASP.NET Core task management app, from basic setup to real-time notifications and role-based access. Includes EF Core, SignalR, and more!
-
Entity Framework Core: The Essential Guide for .NET Developers
miguelbarros1983.medium.com Issue #328
A clear and concise guide to EF Core covering modeling, DbContext, CRUD operations, migrations, and performance tips.
-
Will This New EF Core Feature Be the End of Dapper?
medium.com Issue #327
If you want the full source code, join our community: Here
-
The EF Core Trick That Automatically Secures Your Data
medium.com Issue #327
Why Your Database Queries Are Probably Leaking Data
-
How To Use The Specification Design Pattern With EF Core 8 (Clean Architecture Version).
medium.com Issue #324
(A Deep-Dive, Real Project Example for Enterprise Developers)
-
The One LINQ Method You NEED for Cleaner EF Core: Select
medium.com Issue #323
If you want the full source code, join our community: Here
-
Why I Use the Unit of Work Pattern With EF Core | Clean Architecture (.NET 9)
medium.com Issue #323
How this one architecture decision changed the way I build software forever.
-
How to Apply Global Query Filters in EF Core — A Complete Real-World Guide (Clean Architecture, .NET
medium.com Issue #322
Part 1 of 2 — Enterprise-Level Implementation + Real Project Code
-
Entity Framework Core: A Deep Dive into Modern Data Access
medium.com Issue #322
If you’re a .NET developer, you’ve likely encountered the challenge of bridging the gap between your C# code and a database. This is where…
-
How LINQ Turns Your C# Code into SQL Queries (With Real Examples)
jaykrishnareddy.medium.com Issue #322
When working with databases in .NET, Language Integrated Query (LINQ) is one of the most elegant features ever introduced. It allows you…
-
Add request logging to a database in an ASP.NET Core Web API
roundthecode.com Issue #321
Learn how to add request logging to a database in an ASP.NET Core Web API using Entity Framework Core to effectively monitor and analyse API traffic. The page Add request logging to a database in an A...
-
Why We Should Avoid Lazy Loading in EF Core
malshikay.medium.com Issue #320
The downside of lazy loading in EF Core
-
Handling Deadlocks in EF Core: Prevention and Recovery Strategies
medium.com Issue #320
Prevent and recover from EF Core database deadlocks using retry patterns, transaction design, and smart indexing best practices.
-
⚡ One Trick To Improve EF Core Performance Using Query Splitting.
medium.com Issue #319
Often the simplest change — AsSplitQuery() — yields the biggest production performance improvement when you’re using multiple Include()s.”…