ControllerGenerator

所属分类:C#编程
开发工具:C#
文件大小:0KB
下载次数:0
上传日期:2023-07-29 11:19:30
上 传 者sh-1993
说明:  带源发生器的自动控制器生成器。,
(Automatic Controller Generator with Source Generator.,)

文件列表:
CONTRIBUTING.md (2337, 2023-07-29)
ControllerGenerator.Abstraction/ (0, 2023-07-29)
ControllerGenerator.Abstraction/Attributes/ (0, 2023-07-29)
ControllerGenerator.Abstraction/Attributes/NoGeneratedAttribute.cs (190, 2023-07-29)
ControllerGenerator.Abstraction/Contracts/ (0, 2023-07-29)
ControllerGenerator.Abstraction/Contracts/IAutoGenerateController.cs (207, 2023-07-29)
ControllerGenerator.Abstraction/ControllerGenerator.Abstraction.csproj (1069, 2023-07-29)
ControllerGenerator.sln (1679, 2023-07-29)
ControllerGenerator/ (0, 2023-07-29)
ControllerGenerator/ControllerGenerator.csproj (1498, 2023-07-29)
ControllerGenerator/SourceGenerators/ (0, 2023-07-29)
ControllerGenerator/SourceGenerators/ControllerSourceGenerator.cs (21428, 2023-07-29)
LICENSE.txt (1069, 2023-07-29)

# ControllerGenerator | ControllerGenerator | ControllerGenerator.Abstraction | Action | |------------------|------------------|------------------| | [![NuGet](https://img.shields.io/nuget/v/ControllerGenerator?label=ControllerGenerator)](https://www.nuget.org/packages/ControllerGenerator) | [![NuGet](https://img.shields.io/nuget/v/ControllerGenerator.Abstraction?label=ControllerGenerator.Abstraction)](https://www.nuget.org/packages/ControllerGenerator.Abstraction) | [![Mon Badge](https://github.com/cloud0259/ControllerGenerator/workflows/.build/badge.svg)](https://github.com/cloud0259/ControllerGenerator/actions) | | ![Nuget](https://img.shields.io/nuget/dt/ControllerGenerator?label=ControllerGenerator) | ![Nuget](https://img.shields.io/nuget/dt/ControllerGenerator.Abstraction?label=ControllerGenerator.Abstraction) | | This project is an automatic controller generator for .NET projects. It uses Source Generator to automatically create controllers from specified services in a project containing the services. ## Installation To use this generator, you need to install the ControllerGenerator.Abstractions library in the project that contains the services you want to use for generating controllers. ``` Install-Package ControllerGenerator.Abstractions ``` In your web project, it is necessary to install the ControllerGenerator library ``` Install-Package ControllerGenerator ``` ## Usage To have your services recognized by the generator, each service or its interface must inherit the IAutoGenerateController interface. ```csharp public interface IMyService : IAutoGenerateController { // Service methods } ``` ## Request Generation based on Method Prefixes Requests in the generated controllers are determined based on the method prefixes: - If the service method starts with "Get", "Post", "Patch", "Update", "Create", or "Delete", the generated request will correspond to the respective HTTP methods. - If there is no prefix, the generated request will be of type HTTP POST. Attributes can be used in services. These will be recognized by the Source Generator ## Requirements The Source Generator library must be installed in the target project. The target project should be a .NET 7.0 web application or a higher version. ### Example Here's an example of using this generator: ```csharp // In the project containing the services public interface IMyService : IAutoGenerateController { Task GetUserAsync(int id); Task PostUser(UserData data); Task UpdateUser(int id, UserData data); // Other service methods } //Service implementation public class MyService : IMyService { //Property, Ctor .... [HttpGet] //it's not mandatory [Authorize("Admin")] public async Task GetUserAsync(int id) { return await userList.FirstOrDefaultAsync(x => x.Id == id); } [NoGenerated] //This method is not generate for the controller public Task PostUser(UserData data) { throw new Exception("An error has occured") } //Other method... } // In the .NET 7.0 or higher web project // The generator will automatically create a controller for IMyService with corresponding HTTP methods for each method in the service. public class MyController : ControllerBase { private readonly IMyService _myService; public MyController(IMyService myService) { _myService = myService; } // GET endpoint generated for GetUserAsync [HttpGet("{id}")] public IActionResult GetUser(int id) { // Implementation } // POST endpoint generated for PostUser [HttpPost] public IActionResult PostUser([FromBody] UserData data) { // Implementation } // Other endpoints for UpdateUser and other service methods } ``` It is possible to replace a controller generated by the source generator by creating a controller that inherits the interface of the service to replace ```csharp public class MyController : ControllerBase, IMyService { //Implement the interface to replace the self-generated controller } ``` ## Disclaimer This generator uses Source Generator to automatically generate controllers. Make sure you understand how it works before using it in your project. Please perform thorough testing to ensure that the generated controllers meet your requirements. ## Contributing Contributions are welcome! Please see the CONTRIBUTING.md file for information on how to contribute to this project. ## License This project is licensed under the MIT License.

近期下载者

相关文件


收藏者