Feast.RequestMapper 0.1.1

dotnet add package Feast.RequestMapper --version 0.1.1
NuGet\Install-Package Feast.RequestMapper -Version 0.1.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="Feast.RequestMapper" Version="0.1.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Feast.RequestMapper --version 0.1.1
#r "nuget: Feast.RequestMapper, 0.1.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 Feast.RequestMapper as a Cake Addin
#addin nuget:?package=Feast.RequestMapper&version=0.1.1

// Install Feast.RequestMapper as a Cake Tool
#tool nuget:?package=Feast.RequestMapper&version=0.1.1

RequestMapper

通过注解自动映射到实例的类库,适用于请求结构复杂,传统的参数注解无法映射的情况

Effect

alternate text is missing from this package README image

Start

  • 在需要映射的模型上添加注解,内置提供了一部分,他们在命名空间 Feast.RequestMapper.Attribute

    [FromQuery]
    public class Model 
    {
        public string Id { get; set; }
        public string? Name { get; init; }
    
        [FromForm]
        public IFormFile Logo { get; init; }
        [FromForm]
        public IReadOnlyList<IFormFile> Pictures { get; init; }
    }
    

    class 上添加的注解会自动应用到全部的 property ,在 property 上添加的注解会优先于 class 上的注解

  • 如果需要使用自定义注解或者内置注解,可以通过注册

    RequestMapper.RegisterAttribute<YourAttribute>(Registry.AsYourWish);
    
  • 通过请求的报文来生成

    var model = new Model();
    var newModel = RequestMappper.Generate(this.Request);
    model.Map(this.Request);
    

Preview

  • 🚧 映射处理系统(真的需要吗)
Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  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 netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
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
0.1.1 179 3/26/2023
0.1.0 163 3/26/2023