data access
Entity Framework Core Articles, Tutorials & News
Entity Framework Core articles, tutorials, and news from the DotNetNews archive.
506 articles Updated Page 10 of 21
Browse additional Entity Framework Core articles from the DotNetNews archive.
Entity Framework Core articles
Page 10 of 21
Newest first
-
I Finally Understood What [Owned] Means in EF Core — Here’s the Simple Explanation
medium.com Issue #317
If you’ve been exploring Entity Framework Core, you might have seen the [Owned] attribute and wondered what it really does.
-
Entity Framework Core Nedir? .NET Geliştiricisinin Veritabanı İle İmtihanını Bitiren Araç
medium.com Issue #316
Bir önceki yazımızda ORM (Object-Relational Mapping) kavramının ne olduğunu ve yazılım ile veritabanı arasındaki o “çeviri” problemini…
-
Understanding EF Core Async Query Methods: LoadAsync(), FirstAsync(), FirstOrDefaultAsync()…
medium.com Issue #316
Introduction
-
Entity Framework vs Dapper: Hangisi Senin Projen İçin?
medium.com Issue #315
Veritabanı işlemleri her .NET geliştiricisinin en sık karşılaştığı konulardan biri. Peki Entity Framework mı kullanmalı, yoksa Dapper’a mı…
-
Managing Permissions with EF Core Migrations (Part 2): A No-Nonsense Guide That Actually Scales
medium.com Issue #315
If you want the full source code, join our community: Here
-
Stop Storing JSON as Text: EF 10 Makes It Native
medium.com Issue #314
Explore EF 10’s support for SQL Server’s new JSON data type Continue reading on .Net Programming »
-
The Great EF Core Trap: ValueGeneratedOnAddOrUpdate vs ValueGeneratedOnAdd
medium.com Issue #314
Why the heck is my ValueGenerator not firing on update?!” If you’ve ever screamed this into your keyboard while staring at your entity…
-
Repository Pattern With Entity Framework Core | Clean Architecture, .NET 9
medium.com Issue #314
“A repository is like a well-organized library — it hides the messy details of where and how the books (data) are stored, so readers (the…
-
How LINQ Turns Your C# Code into SQL Queries (With Real Examples)
c-sharpcorner.com Issue #312
Unlock the power of LINQ! This article provides a comprehensive guide on how LINQ translates your C# code into efficient SQL queries. Learn with practical examples demonstrating filtering, joining, or...
-
How to Handle Large Datasets Efficiently with EF Core and Pagination
medium.com Issue #312
Learn how to query and paginate millions of records in EF Core without killing performance or using up memory.
-
Avoiding N+1 Queries in EF Core: Practical Patterns and Fixes
medium.com Issue #312
How to optimize EF Core performance by preventing N+1 queries in your .NET apps with practical solutions and proven design patterns.
-
Entity Framework Core 9 Fundamentals: Part 6 - Mastering Data Modeling & Relationships Guide
c-sharpcorner.com Issue #311
Master data modeling and relationships in Entity Framework Core 9! This guide covers data annotations, Fluent API, one-to-many, one-to-one, and many-to-many relationships. Learn to control your databa...
-
The 7 Sneaky EF Core Change Tracking Bugs That Silently Destroyed My Data (Until I Cracked the Fix)
blog.stackademic.com Issue #311
Discover how invisible tracking issues can overwrite your entities, break relationships, and cause ‘random’ bugs — and learn the exact… Continue reading on Stackademic »
-
When LINQ becomes a mess | Clean EF Core queries
medium.com Issue #311
Sometimes it’s really hard to follow the logic in LINQ — especially if the query is a giant one. And if you’re wondering how to make it…
-
7 Smart Ways to Use EF Core Query Filters (Global Filters) — with a Clean .NET 9 Example
medium.com Issue #310
If you want the full source code, join our community: Here
-
LifeTracker — A .NET App 5: Many to Many Relationship Notes
jackymlui.medium.com Issue #309
Perhaps the most complex part of this app is the Many-to-Many relationship between the Template and Question models. You can find the code…
-
Auditing Changes in EF Core: Track Who Updated What and When
medium.com Issue #309
A step-by-step guide to logging who updated what and when in your .NET applications.
-
JWT Authentication with ASP.NET Core Identity and Entity Framework (EF)
c-sharpcorner.com Issue #309
Secure your ASP.NET Core Web APIs with JWT authentication! This tutorial guides you through integrating ASP.NET Core Identity, Entity Framework Core, and JSON Web Tokens for robust user authentication...
-
The Better Way to Configure Entity Framework Core.
medium.com Issue #307
When you start a new .NET project, setting up Entity Framework Core (EF Core) seems easy — you just add your DbContext , connection string…
-
Clean Architecture in .NET Core
c-sharpcorner.com Issue #306
This article provides a practical guide with code examples, demonstrating how to separate concerns using the Dependency Rule. Learn to structure your .NET Core projects effectively by isolating domain...
-
Implementing Soft Delete in Entity Framework Core with Generic Repository
medium.com Issue #306
Why Soft Delete?
-
EF Core DBContext Entities configuration refactoring
medium.com Issue #306
I’ve noticed that many .NET projects have one thing in common — a very messy DbContext full of entity configuration code.
-
High Performance and Scalability in ASP.NET Core
c-sharpcorner.com Issue #305
This article provides actionable strategies for building blazing-fast web applications. Learn how to optimize asynchronous programming, middleware, caching, EF Core, and Kestrel configuration. Discove...
-
Implement UPSERT – Insert and Update using Fabric Data Pipeline
c-sharpcorner.com Issue #304
Discover how to efficiently implement UPSERT (Update or Insert) operations within Fabric Data Pipelines. This guide provides a practical approach to seamlessly manage data updates and insertions, ensu...
-
Dapper + Entity Framework Core (EF Core) together against PostgreSQL in .NET 8
c-sharpcorner.com Issue #304
Combine the power of Entity Framework Core (EF Core) for schema management and Dapper for raw SQL performance in .NET 8 with PostgreSQL. This guide explores two approaches: using EF Core for CRUD and ...