Executing async operations onchange in Blazor
Explains how to execute asynchronous operations, like remote validation, when a value changes in a Blazor component, covering solutions up to .NET 7.
Explains how to execute asynchronous operations, like remote validation, when a value changes in a Blazor component, covering solutions up to .NET 7.
Learn how to use C# 11's new Raw String Literals feature to generate TwiML (Twilio Markup Language) for handling SMS and voice calls in an ASP.NET Core application.
A guide to creating fake HTTP endpoints for UI prototyping using ASP.NET Core Minimal APIs and the Bogus library.
Explains what middleware is in ASP.NET Core, its role in the request pipeline, and provides a practical implementation example.
A guide to implementing multi-tenancy in ASP.NET Core applications using RavenDB, covering architecture, advantages, and code examples.
A tutorial on integrating Entity Framework Core 7 into an ASP.NET Core web application, covering project setup and database configuration.
A tutorial on implementing API Key authentication in ASP.NET Core for server-to-server communication, including code examples.
Explains how to use labels in Azure App Configuration Service to manage environment-specific settings like connection strings and feature flags.
A tutorial on implementing Azure App Configuration feature flags in an ASP.NET Core API, including setup, configuration, and label-specific flag usage.
A developer explores and compares three libraries (iText 7, DinkToPdf, ChromeHTMLToPdf) for generating PDFs from HTML in ASP.NET Core.
A tutorial on creating a reusable, generic autocomplete component for Blazor applications, moving from a hardcoded solution to a flexible one.
A tutorial on building a custom autocomplete component for Blazor WebAssembly apps, including styling and live data fetching.
A talk on implementing flexible, permission-based authorization in ASP.NET Core to overcome limitations of traditional role/claim-based systems.
A guide to resizing images client-side in Blazor WebAssembly before uploading to the server, using the RequestImageFileAsync method.
Guide to incrementally migrating legacy ASP.NET Framework apps to ASP.NET Core Razor Pages using Microsoft's SystemWebAdapters.
A tutorial on implementing secure API key authentication in ASP.NET Core Web APIs using custom authorization filters.
Explains the WebApplicationFactory in .NET for integration testing ASP.NET Core WebAPIs, highlighting its benefits and usage.
Announcing IdempotentAPI v2.0.0-RC, an open-source .NET library for adding idempotency to APIs, now with support for distributed cluster environments.
Explores rate limiting concepts for web apps, covering why it's needed, algorithms, and implementation strategies with .NET examples.
Explains three methods to create custom middleware in ASP.NET Core: using Request Delegates, by convention, and factory-based.