Transactions in the MongoDB EF Core Provider
Explains how to use implicit and explicit database transactions with the MongoDB Entity Framework Core provider for data consistency.
Explains how to use implicit and explicit database transactions with the MongoDB Entity Framework Core provider for data consistency.
Explains the three table inheritance patterns (TPH, TPT, TPC) now available in EF Core 7 for mapping object-oriented class hierarchies to relational databases.
Tips for improving performance in Entity Framework Core, covering compiled queries, lazy loading, and other optimizations for reads and writes.
EF Core 10.0 adds support for the new JSON data type in Microsoft SQL Server 2025, enabling querying and storage of JSON documents.
A tutorial on implementing Queryable Encryption for sensitive fields using the MongoDB Entity Framework Core provider, enabling encrypted data to remain searchable.
EF Core 10.0 introduces a new ComplexProperty() method for mapping complex types, providing an alternative to the older Owned Entities approach.
A guide to deploying Entity Framework Core database migrations in CI/CD release pipelines instead of on application startup.
Explains a performance issue with ToListAsync/ToArrayAsync in EF Core when querying large data columns and recommends using synchronous versions.
A guide on managing Entity Framework Core migrations during development within .NET Aspire distributed applications.
A developer shares their experience migrating a web application from .NET 6 to .NET 8, focusing on changes required for Entity Framework Core 8.
Explains how to use FormattableStringFactory in C# to create dynamic SQL queries safely with Entity Framework Core, preventing SQL injection.
A curated list of links covering .NET, Azure, React, Git, and other software development topics, tools, and industry news.
A guide to implementing and configuring health checks in ASP.NET Core applications, including database monitoring with Entity Framework Core.
Explains how to fix the 'Unable to resolve service for DbContextOptions' error in Entity Framework Core using IDesignTimeDbContextFactory.
Learn how to use Entity Framework Core 8's SqlQuery<T> to map SQL results to any C# object, similar to Dapper, while keeping EF Core's strengths.
Explores using Complex Types in Entity Framework Core 8 to reduce database tables, simplify data models, and improve performance.
A tutorial on generating sitemaps for ASP.NET Core applications using an open-source library, covering MVC, Minimal APIs, Razor Pages, and Entity Framework Core.
Explains how to filter on JSON array columns in Entity Framework Core 7 using SQL workarounds when LINQ translation fails.
A tutorial on integrating Entity Framework Core 7 into an ASP.NET Core web application, covering project setup and database configuration.
Explains how to use EF Core Query Splitting to solve performance issues like Cartesian Explosion in database queries.