MinimalHelpers

2025-12-07 0 444

Minimal APIs Helpers

A collection of helper libraries for Minimal API projects.

MinimalHelpers.Routing

A library that provides Routing helpers for Minimal API projects for automatic endpoints registration using Reflection.

Installation

The library is available on NuGet. Just search for MinimalHelpers.Routing in the Package Manager GUI or run the following command in the .NET CLI:

dotnet add package MinimalHelpers.Routing

Usage

Create a class to hold your route handlers registration and have it implement the IEndpointRouteHandlerBuilder interface:

public class PeopleEndpoints : MinimalHelpers.Routing.IEndpointRouteHandlerBuilder
{
    public static void MapEndpoints(IEndpointRouteBuilder endpoints)
    {
        endpoints.MapGet(\"/api/people\", GetList);
        endpoints.MapGet(\"/api/people/{id:guid}\", Get);
        endpoints.MapPost(\"/api/people\", Insert);
        endpoints.MapPut(\"/api/people/{id:guid}\", Update);
        endpoints.MapDelete(\"/api/people/{id:guid}\", Delete);
    }

    // ...
}

Call the MapEndpoints() extension method on the WebApplication object inside Program.cs before invoking the Run() method:

// using MinimalHelpers.Routing;
app.MapEndpoints();

app.Run();

By default, MapEndpoints() will scan the calling Assembly to search for classes that implement the IEndpointRouteHandlerBuilder interface. If your route handlers are defined in another Assembly, you have two alternatives:

  • Use the MapEndpoints() overload that takes the Assembly to scan as argument
  • Use the MapEndpointsFromAssemblyContaining<T>() extension method and specify a type that is contained in the Assembly you want to scan

You can also explicitly decide which types (among those that implement the IEndpointRouteHandlerBuilder interface) you actually want to map, passing a predicate to the MapEndpoints method:

app.MapEndpoints(type =>
{
    if (type.Name.StartsWith(\"Products\"))
    {
        return false;
    }

    return true;
});

Note
These methods rely on Reflection to scan the Assembly and find the classes that implement the IEndpointRouteHandlerBuilder interface. This can have a performance impact, especially in large projects. If you have performance issues, consider using the explicit registration method. Moreover, this solution is incompatible with Native AOT.

MinimalHelpers.Routing.Analyzers

A library that provides a Source Generator for automatic endpoints registration in Minimal API projects.

Installation

The library is available on NuGet. Just search for MinimalHelpers.Routing in the Package Manager GUI or run the following command in the .NET CLI:

dotnet add package MinimalHelpers.Routing.Analyzers

Usage

Create a class to hold your route handlers registration and have it implement the IEndpointRouteHandlerBuilder interface:

public class PeopleEndpoints : IEndpointRouteHandlerBuilder
{
    public static void MapEndpoints(IEndpointRouteBuilder endpoints)
    {
        endpoints.MapGet(\"/api/people\", GetList);
        endpoints.MapGet(\"/api/people/{id:guid}\", Get);
        endpoints.MapPost(\"/api/people\", Insert);
        endpoints.MapPut(\"/api/people/{id:guid}\", Update);
        endpoints.MapDelete(\"/api/people/{id:guid}\", Delete);
    }

    // ...
}

Note
You only need to use the MinimalHelpers.Routing.Analyzers package. With this Source Generator, the IEndpointRouteHandlerBuilder interface is auto-generated.

Call the MapEndpoints() extension method on the WebApplication object inside Program.cs before the Run() method invocation:

app.MapEndpoints();

app.Run();

Note
The MapEndpoints method is generated by the Source Generator.

MinimalHelpers.OpenApi

A library that provides OpenAPI helpers for Minimal API projects.

Installation

The library is available on NuGet. Just search for MinimalHelpers.OpenApi in the Package Manager GUI or run the following command in the .NET CLI:

dotnet add package MinimalHelpers.OpenApi

Usage

Extension methods for OpenApi

This library provides several extension methods that simplify the OpenAPI configuration in Minimal API projects. For example, it is possible to customize the description of a response using its status code:

endpoints.MapPost(\"login\", LoginAsync)
    .AllowAnonymous()
    .WithValidation<LoginRequest>()
    .Produces<LoginResponse>(StatusCodes.Status200OK)
    .Produces<LoginResponse>(StatusCodes.Status206PartialContent)
    .Produces(StatusCodes.Status403Forbidden)
    .ProducesValidationProblem()
    .WithOpenApi(operation =>
    {
        operation.Summary = \"Performs the login of a user\";

        operation.Response(StatusCodes.Status200OK).Description = \"Login successful\";
        operation.Response(StatusCodes.Status206PartialContent).Description = \"The user is logged in, but the password has expired and must be changed\";
        operation.Response(StatusCodes.Status400BadRequest).Description = \"Incorrect username and/or password\";
        operation.Response(StatusCodes.Status403Forbidden).Description = \"The user was blocked due to too many failed logins\";

        return operation;
    });

Extension methods for RouteHandlerBuilder

Often, endpoints have multiple 4xx return values, each producing a ProblemDetails response:

endpoints.MapGet(\"/api/people/{id:guid}\", Get)
   .ProducesProblem(StatusCodes.Status400BadRequest)
   .ProducesProblem(StatusCodes.Status401Unauthorized)
   .ProducesProblem(StatusCodes.Status403Forbidden)
   .ProducesProblem(StatusCodes.Status404NotFound);

To avoid multiple calls to ProducesProblem, use the ProducesDefaultProblem extension method provided by the library::

endpoints.MapGet(\"/api/people/{id:guid}\", Get)
   .ProducesDefaultProblem(StatusCodes.Status400BadRequest, StatusCodes.Status401Unauthorized,
       StatusCodes.Status403Forbidden, StatusCodes.Status404NotFound);

MinimalHelpers.Validation

A library that provides an Endpoint filter for Minimal API projects to perform validation with Data Annotations, using the MiniValidation library.

Installation

The library is available on NuGet. Just search for MinimalHelpers.Validation in the Package Manager GUI or run the following command in the .NET CLI:

dotnet add package MinimalHelpers.Validation

Usage

Decorate a class with attributes to define the validation rules:

using System.ComponentModel.DataAnnotations;

public class Person
{
    [Required]
    [MaxLength(20)]
    public string? FirstName { get; set; }

    [Required]
    [MaxLength(20)]
    public string? LastName { get; set; }

    [MaxLength(50)]
    public string? City { get; set; }
}

Use the WithValidation<TModel>() extension method to enable the validation filter:

using MinimalHelpers.Validation;

app.MapPost(\"/api/people\", (Person person) =>
    {
        // ...
    })
    .WithValidation<Person>();

If the validation fails, the response will be a 400 Bad Request with a ValidationProblemDetails object containing the validation errors, for example:

{
  \"type\": \"https://tools.*i*et*f.org/html/rfc9110#section-15.5.1\",
  \"title\": \"One or more validation errors occurred\",
  \"status\": 400,
  \"instance\": \"/api/people\",
  \"traceId\": \"00-009c0162ba678cae2ee391815dbbb59d-0a3a5b0c16d053e6-00\",
  \"errors\": {
    \"FirstName\": [
      \"The field FirstName must be a string or array type with a maximum length of \'20\'.\"
    ],
    \"LastName\": [
      \"The LastName field is required.\"
    ]
  }
}

To customize validation, use the ConfigureValidation extension method:

using MinimalHelpers.Validation;

builder.Services.ConfigureValidation(options =>
{
    // If you want to get errors as a list instead of a dictionary.
    options.ErrorResponseFormat = ErrorResponseFormat.List;

    // The default is \"One or more validation errors occurred\"
    options.ValidationErrorTitleMessageFactory =
        (context, errors) => $\"There was {errors.Values.Sum(v => v.Length)} error(s)\";
});

You can use the ValidationErrorTitleMessageFactory, for example, if you want to localize the title property of the response using a RESX file.

MinimalHelpers.FluentValidation

A library that provides an Endpoint filter for Minimal API projects to perform validation using FluentValidation.

Installation

The library is available on NuGet. Just search for MinimalHelpers.FluentValidation in the Package Manager GUI or run the following command in the .NET CLI:

dotnet add package MinimalHelpers.FluentValidation

Usage

Create a class that extends AbstractValidator and define the validation rules:

using FluentValidation;

public record class Product(string Name, string Description, double UnitPrice);

public class ProductValidator : AbstractValidator<Product>
{
    public ProductValidator()
    {
        RuleFor(p => p.Name).NotEmpty().MaximumLength(50).EmailAddress();
        RuleFor(p => p.Description).MaximumLength(500);
        RuleFor(p => p.UnitPrice).GreaterThan(0);
    }
}

Register validators in the Service Collection:

using FluentValidation;

// Assuming the validators are in the same assembly as the Program class.
builder.Services.AddValidatorsFromAssemblyContaining<Program>();

Use the WithValidation<TModel>() extension method to enable the validation filter:

using MinimalHelpers.FluentValidation;

app.MapPost(\"/api/products\", (Product product) =>
    {
        // ...
    })
    .WithValidation<Product>();

If the validation fails, the response will be a 400 Bad Request with a ValidationProblemDetails object containing the validation errors, for example:

{
  \"type\": \"https://tools.*i*et*f.org/html/rfc9110#section-15.5.1\",
  \"title\": \"One or more validation errors occurred\",
  \"status\": 400,
  \"instance\": \"/api/products\",
  \"traceId\": \"00-f4ced0ae470424dd04cbcebe5f232dc5-bbdcc59f310ebfb8-00\",
  \"errors\": {
    \"Name\": [
      \"\'Name\' cannot be empty.\"
    ],
    \"UnitPrice\": [
      \"\'Unit Price\' must be greater than \'0\'.\"
    ]
  }
}

To customize validation, use the ConfigureValidation extension method:

using MinimalHelpers.Validation;

builder.Services.ConfigureValidation(options =>
{
    // If you want to get errors as a list instead of a dictionary.
    options.ErrorResponseFormat = ErrorResponseFormat.List;

    // The default is \"One or more validation errors occurred\"
    options.ValidationErrorTitleMessageFactory =
        (context, errors) => $\"There was {errors.Values.Sum(v => v.Length)} error(s)\";
});

You can use the ValidationErrorTitleMessageFactory, for example, if you want to localize the title property of the response using a RESX file.

Contributing

The project is constantly evolving. Contributions are welcome! Please file issues or pull requests in the repository and they will be addressed as soon as possible.

下载源码

通过命令行克隆项目:

git clone https://github.com/marcominerva/MinimalHelpers.git

收藏 (0) 打赏

感谢您的支持,我会继续努力的!

打开微信/支付宝扫一扫,即可进行扫码打赏哦,分享从这里开始,精彩与您同在
点赞 (0)

申明:本文由第三方发布,内容仅代表作者观点,与本网站无关。对本文以及其中全部或者部分内容的真实性、完整性、及时性本站不作任何保证或承诺,请读者仅作参考,并请自行核实相关内容。本网发布或转载文章出于传递更多信息之目的,并不意味着赞同其观点或证实其描述,也不代表本网对其真实性负责。

左子网 开发教程 MinimalHelpers https://www.zuozi.net/31300.html

Dump7
上一篇: Dump7
jsp hyukshop
下一篇: jsp hyukshop
常见问题
  • 1、自动:拍下后,点击(下载)链接即可下载;2、手动:拍下后,联系卖家发放即可或者联系官方找开发者发货。
查看详情
  • 1、源码默认交易周期:手动发货商品为1-3天,并且用户付款金额将会进入平台担保直到交易完成或者3-7天即可发放,如遇纠纷无限期延长收款金额直至纠纷解决或者退款!;
查看详情
  • 1、描述:源码描述(含标题)与实际源码不一致的(例:货不对板); 2、演示:有演示站时,与实际源码小于95%一致的(但描述中有”不保证完全一样、有变化的可能性”类似显著声明的除外); 3、发货:不发货可无理由退款; 4、安装:免费提供安装服务的源码但卖家不履行的; 5、收费:价格虚标,额外收取其他费用的(但描述中有显著声明或双方交易前有商定的除外); 6、其他:如质量方面的硬性常规问题BUG等。 注:经核实符合上述任一,均支持退款,但卖家予以积极解决问题则除外。
查看详情
  • 1、左子会对双方交易的过程及交易商品的快照进行永久存档,以确保交易的真实、有效、安全! 2、左子无法对如“永久包更新”、“永久技术支持”等类似交易之后的商家承诺做担保,请买家自行鉴别; 3、在源码同时有网站演示与图片演示,且站演与图演不一致时,默认按图演作为纠纷评判依据(特别声明或有商定除外); 4、在没有”无任何正当退款依据”的前提下,商品写有”一旦售出,概不支持退款”等类似的声明,视为无效声明; 5、在未拍下前,双方在QQ上所商定的交易内容,亦可成为纠纷评判依据(商定与描述冲突时,商定为准); 6、因聊天记录可作为纠纷评判依据,故双方联系时,只与对方在左子上所留的QQ、手机号沟通,以防对方不承认自我承诺。 7、虽然交易产生纠纷的几率很小,但一定要保留如聊天记录、手机短信等这样的重要信息,以防产生纠纷时便于左子介入快速处理。
查看详情

相关文章

猜你喜欢
发表评论
暂无评论
官方客服团队

为您解决烦忧 - 24小时在线 专业服务