Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions aspnetcore/fundamentals/apis.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ author: JeremyLikness
description: Learn how to build fast HTTP APIs with ASP.NET Core using Minimal APIs, the recommended approach for new projects.
ai-usage: ai-assisted
ms.author: jeliknes
ms.date: 08/15/2025
ms.date: 04/30/2026
monikerRange: '>= aspnetcore-6.0'
uid: fundamentals/apis
---
Expand Down Expand Up @@ -88,7 +88,6 @@ Both API projects refer to the following class:
* Model binding extensibility (<xref:Microsoft.AspNetCore.Mvc.ModelBinding.IModelBinderProvider>, <xref:Microsoft.AspNetCore.Mvc.ModelBinding.IModelBinder>)
* Advanced validation features (<xref:Microsoft.AspNetCore.Mvc.ModelBinding.Validation.IModelValidator>)
* [Application parts](xref:mvc/extensibility/app-parts) or the [application model](xref:mvc/controllers/application-model)
* [JsonPatch](https://www.nuget.org/packages/Microsoft.AspNetCore.JsonPatch/) support
* [OData](https://www.nuget.org/packages/Microsoft.AspNetCore.OData/) support
Comment thread
wadepickett marked this conversation as resolved.

Most of these features can be implemented in Minimal APIs with custom solutions, but controllers provide them out of the box.
Expand Down Expand Up @@ -151,7 +150,6 @@ Both API projects refer to the following class:
* Form binding support, including <xref:Microsoft.AspNetCore.Http.IFormFile>
* Advanced validation features (<xref:Microsoft.AspNetCore.Mvc.ModelBinding.Validation.IModelValidator>)
* [Application parts](xref:mvc/extensibility/app-parts) or the [application model](xref:mvc/controllers/application-model)
* [JsonPatch](https://www.nuget.org/packages/Microsoft.AspNetCore.JsonPatch/) support
* [OData](https://www.nuget.org/packages/Microsoft.AspNetCore.OData/) support

## See also
Expand Down
Loading