Skip to content
Merged
Changes from 1 commit
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
2 changes: 0 additions & 2 deletions aspnetcore/fundamentals/apis.md
Original file line number Diff line number Diff line change
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