Update form mapping docs (#30369)

* Update form mapping docs

* Update aspnetcore/fundamentals/minimal-apis/includes/parameter-binding8.md

Co-authored-by: Rick Anderson <3605364+Rick-Anderson@users.noreply.github.com>

---------

Co-authored-by: Rick Anderson <3605364+Rick-Anderson@users.noreply.github.com>
pull/30386/head
Safia Abdalla 2023-09-15 14:57:29 -07:00 committed by GitHub
parent 889f52c423
commit e0f1e8b8c2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 2 deletions

View File

@ -216,8 +216,7 @@ The following code shows:
In the preceding code:
* The target parameter ***must*** be annotated with the [`[FromForm]`](xref:Microsoft.AspNetCore.Mvc.FromFormAttribute) attribute to disambiguate from parameters that should be read from the JSON body.
* Binding to record types is not currently supported, so complex types must be implemented as a class.
* Recursive binding is not supported, so the `Todo` type does not contain any recursive references.
* Binding from complex or collection types is ***not*** supported for minimal APIs that are compiled with the Request Delegate Generator.
<a name="bindar"></a>