[Discussion] [Breaking change]: API Controllers Actions try to infer parameters from DI #40071
Closed
1 of 2 tasks
Labels
old-area-web-frameworks-do-not-use
*DEPRECATED* This label is deprecated in favor of the area-mvc and area-minimal labels
Milestone
Description
The mechanism to infer binding source of API Controller action's parameters now mark parameters to be bound from the Dependency Injection container when the type is registered in the container.
In rare cases this can break applications that have a type in DI that is also accepted in API Controller actions methods.
Version
7.0.0-preview2
Previous behavior
Before if you want to bind a type registered in your Dependency Injection container, it must be explicitly decorated using an attribute that implements
IFromServiceMetadata
(eg.:FromServicesAttribute
)If the attribute is not specified, the parameter is resolved from the request Body sent by the client.
New behavior
Now types in DI will be checked at app startup using
IServiceProviderIsService
to determine if an argument in an API controller action will come from DI or from the other sources.In the below example
SomeCustomType
(assuming you're using the default DI container) will come from the DI container.The new mechanism to infer binding source of API Controller action's parameters will follow the rule bellow:
BindingInfo.BindingSource
is never overwritten.BindingSource.Services
.BindingSource.Body
.BindingSource.Path
.BindingSource.Query
.Type of breaking change
Reason for change
We believe the likelihood of breaking apps to be very low as it's not a common scenario to have a type in DI and as an argument in your API controller action at the same time. Also, this same behavior is currently supported by Minimal Actions.
Recommended action
If you are broken by this change you can disable the feature by setting
DisableImplicitFromServicesParameters
to true.Also, you could continue to have your action's parameters, with the new feature enabled or not, binding from your DI container using an attribute that implements
IFromServiceMetadata
(eg.:FromServicesAttribute
).Affected APIs
API Controller actions.
Announcement
aspnet/Announcements#480
The text was updated successfully, but these errors were encountered: