Enterprise Patterns for ASP.NET Core Minimal API: Identity Map Pattern
Explains the Identity Map pattern for ASP.NET Core Minimal APIs to ensure a single in-memory object per database entity within a request.
Explains the Identity Map pattern for ASP.NET Core Minimal APIs to ensure a single in-memory object per database entity within a request.
A daily link roundup for developers covering .NET, web dev, AI trends, Windows, and tech predictions for 2026.
A developer's 2025 retrospective covering blog migration, PhD start, MVP status, and a breakdown of 50+ technical posts on .NET, ASP.NET Core, and EF Core.
A daily link roundup for developers covering .NET, web development, AI, and tech trends with numerous technical articles and resources.
Explains the Unit of Work pattern for managing database transactions in ASP.NET Core Minimal APIs with EF Core, including implementation and benefits.
Explains how to implement the Repository pattern in ASP.NET Core Minimal APIs to decouple domain logic from database access.
A tutorial on building an ASP.NET Core API with Azure Functions, Durable Functions, and SQL Server, using GitHub Copilot to generate the project architecture.
Explores entity validation in .NET 10, covering the Data Annotations API, common attributes like Required and MinLength, and recent changes.
Explains techniques for implementing multitenant UI customization in ASP.NET Core, including tenant-specific views and conditional content.
Explores various tenant identification techniques for multitenant ASP.NET Core applications, including query strings, routes, and HTTP headers.
Explores three techniques for implementing multitenancy in EF Core applications, focusing on tenant isolation strategies and context configuration.
A guide to implementing API versioning in ASP.NET Core, covering setup, versioning strategies, and integration with Swagger.
Explains how to implement and use health checks in ASP.NET Core applications to monitor system status and resource utilization.
Explains rate limiting strategies in ASP.NET Core, including fixed window, sliding window, token bucket, and concurrency limiters.
Guide to running legacy ASP.NET Core 3.1 applications inside a .NET 9 container, covering dependency fixes and DevOps pipeline updates.
Analysis of CVE-2025-55315, a critical HTTP request smuggling vulnerability in ASP.NET Core with a CVSS 9.9 score, its impact, and mitigation.
Explains how to add and use metadata with fallback endpoints in ASP.NET Core routing, including nuances for MVC/Razor Pages.
Explains methods to restrict access to action methods in ASP.NET Core MVC using filters and the Authorize attribute.
Explores extending AutoMapper for automatic type mapping and dependency injection into Profile classes and value resolvers.
Explains how to implement custom validation in ASP.NET Core 10.0 Minimal APIs using ValidationAttribute and IValidatableObject.