Advertisement · 728 × 90
#
Hashtag
#efcore
Advertisement · 728 × 90
Just a moment...

Significantly improve your EF Core query performance without caching! Discover techniques to reduce query time by up to 80% using efficient data retrieval strategies. #EFCore #PerformanceOptimization

0 0 0 0
blog post hero image

blog post hero image

New post from my blog...

In case you missed it earlier...

EF Core Global Query Filters - The Soft Delete Pattern You Should Be Using
barretblake.dev/posts/development/2026/0... #efcore #dotnet

0 0 0 0
blog post hero image

blog post hero image

New post from my blog...

EF Core Global Query Filters - The Soft Delete Pattern You Should Be Using
barretblake.dev/posts/development/2026/0... #efcore #dotnet

0 0 0 0
Post image

Turns out my first time with Dapper was much better than with EF Core...

Read more here:
www.devleader.ca/2024/05/20/dapper-and-st...

#CSharp #DotNet #EFCore #Dapper

0 0 0 0
EF Core 11.0: Create and Apply Migrations in a Single Command .NET, ASP.NET Core, Visual Studio, Azure, Jaliya Udagedara

Jaliya's Blog: EF Core 11.0: Create and Apply Migrations in a Single Command
jaliyaudagedara.blogspot.com/2026/03/ef-c...

#ef #efcore #dotnet

0 0 0 0

Delve into state management with EF Core's DbContext lifecycle. Understand its scope & lifetime for optimal performance in your .NET apps. #EFCore #StateManagement

0 0 0 0
Just a moment...

Centralizing EF Core in a .NET monorepo streamlines database management and improves efficiency. Learn how to implement this setup for scalable applications with effective resource sharing. #EFCore #DotNet

0 0 0 0
blog post hero image

blog post hero image

From the archives...

KCDC 2024 Slidedeck
barretblake.dev/posts/conferences/2024/k... #efcore #entityframework #slides

0 0 0 0
Just a moment...

Learn how to implement global filters with EF Core Query Filters in .NET 10 to streamline your data access logic and improve application performance. #EFCore #DotNet10

0 0 0 0
Preview
EF Core 11.0: Complex Types and JSON Columns on Entity Types with TPT/TPC Inheritance .NET, ASP.NET Core, Visual Studio, Azure, Jaliya Udagedara

Jaliya's Blog: EF Core 11.0: Complex Types and JSON Columns on Entity Types with TPT/TPC Inheritance

jaliyaudagedara.blogspot.com/2026/03/ef-c...

#efcore #dotnet #csharp

0 0 0 0
How to Seed Data to EF Core How to Seed Data to EF Core

How to Seed Data to EF Core developmentwithadot.blogspot.com/2026/03/how-... #dotnet #efcore

0 0 0 0
Preview
Fix PostgreSQL Connection Pool Exhaustion in EF Core with NpgsqlDataSource Introduction A few days ago, after deploying to our test environment, we missed something. Everything worked fine locally. Tests passed. We moved on. Then the test environment started throwing this…

Is your #DotNet app leaking #PostgreSQL connections? 🐘💨

Don't let error 53300 crash your production. Learn why AddDbContext might be creating too many pools and how to fix it with a Singleton DataSource.

✅ The Bug
✅ The Fix
✅ SQL Monitoring

Read here: elguerre.com/2026/03/12/f...

#CSharp #EFCore

0 0 0 0
Preview
Modern Mapping with EF Core Modern Mapping with EF Core

Mal wieder was Neues über EFcore gelernt. Ab den Shadow und Indexer Properties war es mir neu -- und ich dachte ich bin voll der EFcore-Checker 🙂

Hab ich aber auch noch nie gebraucht bisher.
#dotnet #efcore #orm

developmentwithadot.blogspot.com/2026/02/mode...

1 0 0 0

I have been using keyset pagination in EF Core for our larger tables and the speed difference is undeniable. Offset pagination is fine for small sets where you need to jump to a specific page. But for high volume data where you just go next or back keyset is much more stable and fast
#dotnet #efcore

0 0 0 0
Preview
Polymorphic Relationships in EF Core: Three Approaches

EF Core inheritance, decoded: TPH, TPT, and TPC with code, migrations, and the tradeoffs that matter in production. Pick your inheritance strategy without tripping over nulls, joins, or duplicated columns.

#efcore #csharp #dotnet

0 0 0 0
Preview
.NET 11 Preview 2 is now available! - .NET Blog Find out about the new features in .NET 11 Preview 2 across the .NET runtime, SDK, libraries, ASP.NET Core, Blazor, C#, .NET MAUI, and more!

.NET 11 Preview 2 is now available! devblogs.microsoft.com/dotnet/dotne... #dotnet #aspnetcore #efcore #maui

0 0 0 0
Preview
.NET drip - Saturday, March 7, 2026

Hot paths overheating? In this drop we chill them with FrozenDictionary/FrozenSet for build-once, read-many speed on configs and feature flags. Plus EF Core polymorphism tradeoffs and Rx.NET 7 for real-time vibes.

#csharp #dotnet #efcore

0 0 0 0
Just a moment...

Explore the 7 subtle EF Core change tracking bugs that could compromise your data integrity. Learn how they occur & how to fix them to prevent data loss in your projects. #EFCore #DataIntegrity

0 0 0 0
Post image Post image Post image

🚀Die #bastacon-Workshops am letzten Tag

🔹#OWASP 2025 –  Christian Wenz
🔹#EFCore 10.0  – @dotnetdoktor.bsky.social 
🔹User Story Mapping – André Krämer 
🔹Architektur-Best Practices – @bsky.oliversturm.com 
🔹Modern Angular – @manfredsteyer.bsky.social & @rainerhahnekamp.bsky.social

1 0 0 0
Just a moment...

Learn how the Unit of Work pattern enhances transaction management in EF Core! Streamline your operations and improve app efficiency by managing changes as a single unit. #EFCore #DotNet

1 0 0 0
Preview
.NET drip - Thursday, February 26, 2026

This drop jumps from on-device CLIP embeddings in .NET to a tidy Stripe Checkout in ASP.NET Core, showing how these pieces work in real apps. Plus a peek at LINQPad 9's AI and why EF Core may be the 2026 default.

#csharp #dotnet #efcore

0 0 1 0

Explore the power of vector search with MongoDB & EF Core! Enhance your applications with advanced search capabilities. Dive into the integration details and optimize your queries. #MongoDB #EFCore

1 0 0 0
Preview
ACID in Practice for .NET: Isolation Levels, Anomalies, and Transaction Pitfalls

Think transactions keep you safe? This post demystifies SQL Server isolation in .NET, then shows EF Core concurrency, outbox, and idempotency patterns that make services resilient under pressure.

#dotnet #efcore #sqlserver

1 0 1 0
Just a moment...

Avoid the Cartesian Product trap in C# and EF Core! Optimize your queries by using explicit joins or relationships. Reduce data inflation from erroneous cross joins. #dotnet #EFCore

0 0 0 0
Preview
.NET drip - Tuesday, February 24, 2026

Small choices, big wins. This drop shows how to keep industrial cameras streaming, force real WebView2 refreshes, validate EF Core before SaveChanges, and pick StartsWith for faster hot paths.

#csharp #dotnet #efcore

0 0 0 0

Enhance your #EFCore workflow with JDefCptBuild! This tool optimizes build-time scaffolding, ensuring database-first models remain up-to-date effortlessly. Save time and reduce errors in your development process. #DotNet

0 0 0 0
Solving the Deep Immutable Problem in EF Core
Solving the Deep Immutable Problem in EF Core YouTube video by Zoran on C#

Immutability in ef core #dotnet #efcore #cshaFP #fsharp youtu.be/P_t6UkCseDU?...

0 0 0 0
Just a moment...

Clean Architecture with EF Core doesn't always require abstraction. Understand why simplifying can improve efficiency and reduce complexity in your .NET projects. Dive into the details and foster more robust solutions. #CleanArchitecture #EFCore

0 0 0 0
Just a moment...

Explore the differences between Optimistic and Pessimistic Locking in EF Core .NET! Learn which strategy suits your app needs for enhanced concurrency management. Understand scenarios, pros, cons, & how to implement them effectively. #EFCore #DotNet

0 0 0 0
Preview
.NET drip - Thursday, February 19, 2026

This drop nails real wins: faster API validation in .NET 10, Minimal API myths busted, and MAUI C# expressions that clean up XAML. Also, a calm tour of post-quantum crypto and safer EF Core config.

#dotnet #csharp #efcore

0 0 0 0