Albon.ControllerGenerator
1.0.1
See the version list below for details.
dotnet add package Albon.ControllerGenerator --version 1.0.1
NuGet\Install-Package Albon.ControllerGenerator -Version 1.0.1
<PackageReference Include="Albon.ControllerGenerator" Version="1.0.1" />
paket add Albon.ControllerGenerator --version 1.0.1
#r "nuget: Albon.ControllerGenerator, 1.0.1"
// Install Albon.ControllerGenerator as a Cake Addin #addin nuget:?package=Albon.ControllerGenerator&version=1.0.1 // Install Albon.ControllerGenerator as a Cake Tool #tool nuget:?package=Albon.ControllerGenerator&version=1.0.1
ControllerGenerator
The ControllerGenerator is a useful tool for ASP.NET WebApps that enables dynamic creation of ControllerBase derived classes at runtime from business service classes.
Get Started
Flag the methods of the service you want to exposes an API Controller with HttpMethodAttribute class (HttpGet, HttpPost,...)
[HttpGet] public IEnumerable<WeatherForecast> GetWeatherForecastGet1()
Create the controller before using the ApplicationBuilder by calling the
CreateController<TService>()
of the ControllerGenerator class.public static Type CreateController<TService>();
You can implement your own routing convention by implementing
IRoutingConvention
and callCreateController<TService>(IRoutingConvention routingConvention)
. It permits to choose how the route of your WebApp is defined. You can also implement your own naming convention by implementingINamingConvention
and callCreateController<TService>(INamingConvention namingConvention)
. It permits to choose how the name of services of your WebApp is defined. You can also do both by callingCreateController<TService>(IRoutingConvention routingConvention, INamingConvention namingConvention)
. If you don't implement these interfaces, the ControllerGenerator will use default convention.Add the dynamic assembly to the WebApplicationBuilder
var applicationBuilder = WebApplication.CreateBuilder(args); applicationBuilder.Services.AddMvc().AddApplicationPart(ControllerGenerator.ControllerGenerator.DynamicAssembly);
Enjoy !
Why use it
The ControllerGenerator is a useful tool for ASP.NET WebApps that enables dynamic creation of ControllerBase derived classes at runtime. This approach offers several benefits and use cases:
Reduced Boilerplate Code: With ControllerGenerator, you can generate ControllerBase derived classes on-the-fly without the need to write extensive boilerplate code manually. This leads to cleaner and more concise codebases.
Dynamic API Endpoints: It allows you to create API endpoints dynamically, which can be particularly helpful when you have a large number of similar endpoints with minor variations.
Plugin Architecture: When building extensible applications, you can use ControllerGenerator to dynamically load and integrate external or third-party API controllers without having to recompile your main project.
Customization and Configuration: By generating ControllerBase derived classes at runtime, you can customize the behavior of API endpoints based on configuration files, database settings, or user input, providing greater flexibility to your application.
Versioning and Feature Toggling: ControllerGenerator can be leveraged to implement API versioning, allowing you to maintain backward compatibility while introducing new features to the API.
Testing and Mocking: In unit testing scenarios, ControllerGenerator can be beneficial for creating mock ControllerBase derived classes with predefined responses, making it easier to isolate and test different parts of your application.
Rapid Prototyping: During the early stages of development or when prototyping new features, using ControllerGenerator can accelerate the process of creating temporary or experimental API endpoints.
Microservices and Multi-Tenancy: In microservices architectures or multi-tenant applications, ControllerGenerator can dynamically generate controllers based on tenant-specific configurations or service requirements.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net7.0 is compatible. 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. |
-
net7.0
- Microsoft.AspNetCore.Mvc.Core (>= 2.2.5)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.