AzureFunctions.MvcModelBinding 4.2.1

dotnet add package AzureFunctions.MvcModelBinding --version 4.2.1
NuGet\Install-Package AzureFunctions.MvcModelBinding -Version 4.2.1
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="AzureFunctions.MvcModelBinding" Version="4.2.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add AzureFunctions.MvcModelBinding --version 4.2.1
#r "nuget: AzureFunctions.MvcModelBinding, 4.2.1"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install AzureFunctions.MvcModelBinding as a Cake Addin
#addin nuget:?package=AzureFunctions.MvcModelBinding&version=4.2.1

// Install AzureFunctions.MvcModelBinding as a Cake Tool
#tool nuget:?package=AzureFunctions.MvcModelBinding&version=4.2.1

AzureFunctions.MvcModelBinding

Provides ASP.NET Core MVC model binding for Azure Functions

https://www.nuget.org/packages/AzureFunctions.MvcModelBinding

Problem

Azure Function is lacking of built-in ASP.NET Core MVC Model Binding attributes like [FromQuery], [FromBody], [FromForm].

Solution

  1. Expose custom Model binding attributes derived from ASP.NET Core MVC attributes
  2. Provide custom extension that derives from IExtensionConfigProvider
  3. Finish configuration of ASP.NET Core MVC services
  4. Pass data from Azure Function binding attributes to ASP.NET Core MVC model binderand validator

Example

  1. Add MVC Core services by calling builder.Services.AddMvcCore()

  2. Register Azure Function Model binding by calling .AddFunctionModelBinding()

  3. Add [FromQuery]/[FromBody]/[FromForm] attributes to your function parameters

    [FunctionName("QueryData")]
    public object QueryData(
        [HttpTrigger(AuthorizationLevel.Anonymous, "POST", Route = "data")] HttpRequest request,
        [FromQuery, Required] string filter,
        [FromBody] object content)
    {
        // your code goes here
    }
    
  4. Enjoy 😄

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
.NET Core netcoreapp3.1 is compatible. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
4.2.1 2,321 9/2/2023
4.2.0 130 9/1/2023
4.1.0 385 5/25/2023
4.0.8.3 134 5/25/2023
4.0.8.2 130 5/25/2023
4.0.8.1 128 5/25/2023
4.0.8 1,003 10/4/2022
4.0.7 362 10/4/2022
4.0.6 351 10/4/2022
4.0.5 537 8/10/2022
4.0.4 447 6/24/2022
4.0.3 3,369 5/10/2022
4.0.2 440 4/23/2022
4.0.1 410 4/22/2022
4.0.0 510 4/22/2022
1.0.6 588 4/6/2022
1.0.5 533 10/25/2021
1.0.4 336 10/25/2021
1.0.3 311 9/28/2021
1.0.2 306 8/26/2021
1.0.1 302 8/26/2021
1.0.0 299 8/25/2021

- Added FunctionModelBindingOptions with lifecycle hooks
     - Added Localization support