About 32,300 results
Open links in new tab
  1. Minimal APIs quick reference | Microsoft Learn

    Dec 5, 2025 · This document: Provides a quick reference for Minimal APIs. Is intended for experienced developers. For an introduction, see Tutorial: Create a Minimal API with …

  2. Tutorial: Create a Minimal API with ASP.NET Core

    Aug 21, 2024 · Minimal APIs are architected to create HTTP APIs with minimal dependencies. They're ideal for microservices and apps that want to include only the minimum files, features, …

  3. Understanding questions of Minimal API by Blazor Web (server ...

    May 17, 2025 · Using Minimal API inside Blazor Server for authentication makes sense, but exposing endpoints for OTP generation could introduce unnecessary risks. If API access is …

  4. Authentication and authorization in Minimal APIs

    Jul 26, 2024 · Minimal APIs support all the authentication and authorization options available in ASP.NET Core and provide some additional functionality to improve the experience working …

  5. How do I add parameters and the DbContext to a minimal API call ...

    Nov 25, 2024 · Learn how to build fast HTTP APIs with ASP.NET Core using Minimal APIs, the recommended approach for new projects. Learn how parameters are populated before …

  6. JsonPatchDocument problems with Minimal API in .NET6 / 7 …

    Aug 18, 2023 · First, JSON Patch support in ASP.NET Core web API is based on Newtonsoft.Json and requires the Microsoft.AspNetCore.Mvc.NewtonsoftJson NuGet …

  7. APIs overview | Microsoft Learn

    Aug 28, 2025 · Learn how to build fast HTTP APIs with ASP.NET Core using Minimal APIs, the recommended approach for new projects.

  8. Test Minimal API apps | Microsoft Learn

    Oct 3, 2025 · ASP.NET Core の最小 API の概要について説明します 統合テストによってデータベース、ファイル システム、ネットワークなどのインフラストラクチャ レベルで、アプリ …

  9. Asp.net Core Minimal Web Api : Redirect to url showing json …

    Sep 5, 2022 · But this code display json result in my browser & does not redirect to url! Correct and the expected results since Web API does not have the concept of a redirect. Code is the …

  10. Parameter binding in Minimal API applications | Microsoft Learn

    ASP.NET Core provides support for custom parameter binding in Minimal APIs using the IBindableFromHttpContext<TSelf> interface. This interface, introduced with C# 11's static …