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)
Services.AddScoped<SomeCustomType>();
[Route("[controller]")]
[ApiController]
public class MyController : ControllerBase
{
public ActionResult Get([FromServices]SomeCustomType service) => Ok();
}
If the attribute is not specified, the parameter is resolved from the request Body sent by the client.
Services.AddScoped<SomeCustomType>();
[Route("[controller]")]
[ApiController]
public class MyController : ControllerBase
{
// Bind from the request body
[HttpPost]
public ActionResult Post(SomeCustomType service) => Ok();
}
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.
Services.AddScoped<SomeCustomType>();
[Route("[controller]")]
[ApiController]
public class MyController : ControllerBase
{
// Binding from the services
[HttpPost]
public ActionResult Post(SomeCustomType service) => Ok();
}
The new mechanism to infer binding source of API Controller action's parameters will follow the rule bellow:
- A previously specified
BindingInfo.BindingSource is never overwritten.
- A complex type parameter, registered in the DI container, is assigned
BindingSource.Services.
- A complex type parameter, not registered in the DI container, is assigned
BindingSource.Body.
- Parameter with a name that appears as a route value in ANY route template is assigned
BindingSource.Path.
- All other parameters are
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.
services.Configure<ApiBehaviorOptions>(options =>
{
options.DisableImplicitFromServicesParameters = 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).
Services.AddScoped<SomeCustomType>();
[Route("[controller]")]
[ApiController]
public class MyController : ControllerBase
{
// Binding from the DI container
[HttpPost]
public ActionResult Post([FromServices]SomeCustomType service) => Ok();
}
Affected APIs
API Controller actions.
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
IServiceProviderIsServiceto 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.BindingSourceis 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
DisableImplicitFromServicesParametersto 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.