data access
Entity Framework Core Articles, Tutorials & News
Entity Framework Core articles, tutorials, and news from the DotNetNews archive.
533 articles Updated Page 2 of 22
Browse additional Entity Framework Core articles from the DotNetNews archive.
Entity Framework Core articles
Page 2 of 22
Newest first
-
ASP.NET Web API CRUD with EF Core & PostgreSQL (Code First)
c-sharpcorner.com Issue #517
Build an ASP.NET Core Web API with EF Core and PostgreSQL using Code First. Master CRUD operations for robust data management.
-
Optimizing Entity Framework Core Performance with Compiled Queries and AsNoTracking
c-sharpcorner.com Issue #515
Boost EF Core read performance! Learn to use AsNoTracking and Compiled Queries to slash overhead, reduce GC pressure, and speed up repetitive database calls.
-
PostgreSQL 18 Performance Tuning for EF Core Applications
c-sharpcorner.com Issue #514
Optimize PostgreSQL 18 for EF Core apps. Learn to tune queries, use indexes, manage data loading, and implement a repeatable performance tuning process.
-
EF Core 10 Performance Tuning: Tracking, Query Filters, Compiled Queries, and Bulk Operations
c-sharpcorner.com Issue #513
Boost EF Core 10 performance with AsNoTracking, query filters, compiled queries, and bulk operations. Optimize your data access layer.
-
Building Zero-Downtime Database Migrations with EF Core 11
c-sharpcorner.com Issue #512
Master zero-downtime database migrations with EF Core 11 using the Expand-Contract pattern for seamless, production-ready deployments.
-
IQueryable vs IEnumerable in C# — The Difference Every .NET Developer Should Know
medium.com Issue #511
If you’ve worked with LINQ or Entity Framework, you’ve almost certainly seen these two interfaces:
-
Understanding Entity Framework Core Migrations
c-sharpcorner.com Issue #511
Master Entity Framework Core Migrations for seamless database schema management. Keep your database in sync with evolving C# models using the Code First approach.
-
Modernizing a Legacy Enterprise Application Using .NET 6 Microservices, React, EF Core and ActiveMQ
c-sharpcorner.com Issue #511
Modernize legacy apps with .NET 6 microservices, React, EF Core, and ActiveMQ for independent evolution, scalability, and operational control.
-
Data Access and Persistence in .NET
medium.com Issue #510
In Part 1, I wrote about boundaries. In Part 2, I wrote about aggregates and invariants. In Part 3, I wrote about domain events. In Part 4…
-
EF Core Performance Benchmarks: 12 Mistakes That Hurt Query Speed
c-sharpcorner.com Issue #510
Unlock EF Core performance! Discover 12 common mistakes hurting query speed and learn production-ready solutions for faster applications.
-
Why Every EF Core Developer Needs to Try Entity Framework Extensions
medium.com Issue #509
When building data-intensive applications with Entity Framework Core, you will eventually face a critical performance challenge: inserting… Continue reading on Towards Dev »
-
Entity Framework Core Performance Anti-Patterns in Production
c-sharpcorner.com Issue #509
Master EF Core performance! Avoid common anti-patterns like N+1 queries, over-fetching, and client-side evaluation for faster, scalable .NET apps.
-
EF Core Is Already a Repository. Stop Wrapping It in Another One.
medium.com Issue #509
Open a lot of .NET projects and you’ll find the repository pattern sitting on top of Entity Framework Core. IProductRepository, GetById…
-
Slow pagination in EF Core? Try keyset pagination
roundthecode.com Issue #509
Learn how keyset pagination works in Entity Framework Core, how it compares to offset pagination, and how indexes can dramatically improve your pagination performance.
-
Mastering EF Core Performance Everything I Learned About Writing Faster Queries
bvsreyanth.medium.com Issue #509
Hi Everyone 👋
-
The N+1 Query Problem in EF Core (And How to Spot It Before Production Does)
medium.com Issue #508
A page that felt fine in testing is slow in production. Same code, same query, but now it crawls. You open the SQL log and there it is —…
-
After Four Years with Entity Framework Core, EF Core 10 Finally Feels Worth the Upgrade
medium.com Issue #507
After 4 Years of Using Entity Framework Core, EF Core 10 Is the First Upgrade That Actually Makes Me Want to Migrate
-
Entity Framework Core 11: New Features and Performance Enhancements
c-sharpcorner.com Issue #507
Discover EF Core 11's performance boosts, new features, and best practices for faster .NET data access and efficient database management.
-
Entity Framework Core 10 Performance Tuning: 25 Production Optimization Techniques
c-sharpcorner.com Issue #506
Master EF Core 10 performance! Discover 25 production optimization techniques for faster, scalable .NET data access. Boost your app's speed.
-
EF Core Performance Tips for Faster Queries
c-sharpcorner.com Issue #506
Boost EF Core performance with essential tips: select only needed columns, use AsNoTracking, filter at DB, avoid N+1, and monitor SQL.
-
Entity Framework Core 11 Migrations: Best Practices for Production Deployments
c-sharpcorner.com Issue #505
Master EF Core 11 migrations for production. Learn best practices for safe deployments, avoiding downtime, and ensuring data integrity.
-
How I Cut an EF Core Endpoint’s Response Time by 50% With Dapper and Raw SQL
medium.com Issue #505
The execution plan, the missing index, and the raw SQL query that saved one job portal’s busiest page.
-
The Migration That Lied for Two Years
rogerkeizer.medium.com Issue #504
How an outdated CLI tool left behind a corrupt EF Core snapshot — and why a major upgrade finally exposed it
-
Fastest Way to Bulk Insert Thousands of Rows in EF Core
codewithmukesh.com Issue #502
Benchmark the fastest way to bulk insert thousands of rows in EF Core 10 - AddRange vs EFCore.BulkExtensions vs SqlBulkCopy and Npgsql COPY, with real numbers.
-
IEnumerable vs IQueryable: Ask this question first
medium.com Issue #502
While searching differences between IEnumerable vs IQueryable, we generally find below explanation : Continue reading on Women in Technology »