Biwen.MinimalApi
1.1.0.1
dotnet add package Biwen.MinimalApi --version 1.1.0.1
NuGet\Install-Package Biwen.MinimalApi -Version 1.1.0.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="Biwen.MinimalApi" Version="1.1.0.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Biwen.MinimalApi --version 1.1.0.1
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: Biwen.MinimalApi, 1.1.0.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 Biwen.MinimalApi as a Cake Addin #addin nuget:?package=Biwen.MinimalApi&version=1.1.0.1 // Install Biwen.MinimalApi as a Cake Tool #tool nuget:?package=Biwen.MinimalApi&version=1.1.0.1
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
Biwen.MinimalApi
minimal api anywhere,no reflection,no emit,just use roslyn source generator for NativeAOT
.
Usage
Install Package
dotnet add package Biwen.MinimalApi
Define Api
1. :IMinimalApi
way
[MinimalApi("groupName", "/hello", ["GET", "POST"])]
public class HelloApi(RandomService randomService) : IMinimalApi
{
private readonly RandomService _randomService = randomService;
public Delegate Handler => [OutputCache] () =>
{
return Results.Content($"hello world {_randomService.GetRandom()}");
};
public RouteHandlerBuilder HandlerBuilder(RouteHandlerBuilder builder)
{
builder.AllowAnonymous();
return builder;
}
}
2. :BaseMinimalApi<T>
way
support Auto Validation
public class HelloRequest : BaseRequest<HelloRequest>
{
[FromRoute]
[Required]
public string? Name { get; set; }
[FromQuery]
public string? Q { get; set; }
[FromServices]
public RandomService? RandomService { get; set; }
public HelloRequest()
{
RuleFor(x => x.Name).Length(2, 10);
}
}
[MinimalApi("api", "hello3/{name}",["GET"])]
public class HelloApi3 : BaseMinimalApi<HelloRequest>
{
public override async Task<IResult> ExecuteAsync(HelloRequest request)
{
await Task.CompletedTask;
return Results.Content($"hello {request.Name} {request.Q} {request.RandomService?.GetRandom()}");
}
public override RouteHandlerBuilder HandlerBuilder(RouteHandlerBuilder builder)
{
// 模拟5s过期
builder.CacheOutput(x => x.Expire(TimeSpan.FromSeconds(5)));
return base.HandlerBuilder(builder);
}
}
Add AddMinimalApis()
& Use MapMinimalApis()
// 注册 your services
builder.Services.AddOutputCache();
builder.Services.AddSingleton<RandomService>();
// ...
// 添加MinimalApi
builder.Services.AddMinimalApis();
// ...
// 注册MinimalApi路由
app.MapMinimalApis();
// ...
Remark
- Why use
native-aot
with aspnet core - 引用的项目必须是net8.0+,如果需要
NativeAOT
编译,需要在项目文件中添加如下配置,推荐直接使用NativeAOT脚手架创建项目
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<PublishAot>true</PublishAot>
<IsAotCompatible>true</IsAotCompatible>
</PropertyGroup>
</Project>
- 如果项目需要AOT编译,Json序列化需要使用
System.Text.Json
(且需要使用System.Text.Json源生成器),Newtonsoft.Json
不支持AOT编译
builder.Services.ConfigureHttpJsonOptions(options =>
{
options.SerializerOptions.TypeInfoResolverChain.Insert(0, AppJsonSerializerContext.Default);
});
var todosApi = app.MapGroup("/todos");
todosApi.MapGet("/", () => sampleTodos);
todosApi.MapGet("/{id}", (int id) =>
sampleTodos.FirstOrDefault(a => a.Id == id) is { } todo
? Results.Ok(todo)
: Results.NotFound());
app.Run();
[JsonSerializable(typeof(Todo[]))]
internal partial class AppJsonSerializerContext : JsonSerializerContext
{
}
Report Diagnostic Code
GEN101
: 不能将[MinimalApi]
标记到抽象类GEN102
:[MinimalApi]
标记的类必须实现接口:IMinimalApi
或者继承:BaseMinimalApi<T>
Q&A
- MinimalApi中如何拿到HttpContext对象? 请在构造函数中注入IHttpContextAccessor获取
- 当前是NativeAOT版本,由于AOT存在诸多限制,所以很多Biwen.QuickApi中的特性不受支持,后续会提供更多的特性支持. 参考:AOT兼容性
- 为什么要AOT编译? 有什么好处? 最大程度减少磁盘占用空间:使用本机 AOT 发布时,将生成一个可执行文件,其中仅包含支持程序所需的外部依赖项的代码。 减小的可执行文件大小可能会导致:较小的容器映像,例如在容器化部署方案中。缩短了较小映像的部署时间。</br> 缩短启动时间:本机 AOT 应用程序可缩短启动时间,这意味着应用已准备好更快地为请求提供服务。改进了容器业务流程协调程序需要管理从应用的一个版本到另一个版本的转换的部署。</br> 减少内存需求:本机 AOT 应用可能会减少内存需求,具体由应用执行的工作决定。 减少内存消耗可以提高部署密度和可伸缩性。</br>
License
MIT
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net8.0 is compatible. 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. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
net8.0
- Biwen.MinimalApi.Gen (>= 1.1.0.1)
- FluentValidation.AspNetCore (>= 11.3.0)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
NET8 NativeAOT support