FormattableStringFactory - Creating dynamic FormattableString instances
Explains how to use FormattableStringFactory in C# to create dynamic SQL queries safely with Entity Framework Core, preventing SQL injection.
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.
Final part of a series on using C# 9 records as strongly-typed IDs, covering remaining issues with EF Core and ToString() generation.
A guide to integrating C# 9 record-based strongly-typed IDs with Entity Framework Core using value converters.
Explains how to use the Aggregate Pattern in Domain-Driven Design with EF Core to handle concurrency and enforce domain invariants like order line limits.
Explains how to use EF Core 5.0's ToQueryString() method to translate LINQ queries to SQL without executing them against the database.
A guide to integrating data from MSSQL linked servers into Entity Framework Core applications using database views.
A technical guide on implementing a repository-like querying interface directly within an Entity Framework Core DbContext, avoiding custom repository classes.
A guide to configuring Entity Framework Core for performance and reliability, covering retries, warnings, logging, and query tracking.
A guide on migrating existing databases to use Entity Framework Core's built-in data seeding feature without causing insertion conflicts.
A tutorial on creating a basic Web API for an online store using ASP.NET Core, covering project setup, data models, and Entity Framework Core.
A tutorial on implementing audit trails in Entity Framework Core using shadow properties, without modifying domain entities.