MinimatR 1.2.2

There is a newer prerelease version of this package available.
See the version list below for details.
dotnet add package MinimatR --version 1.2.2
NuGet\Install-Package MinimatR -Version 1.2.2
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="MinimatR" Version="1.2.2" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add MinimatR --version 1.2.2
#r "nuget: MinimatR, 1.2.2"
#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 MinimatR as a Cake Addin
#addin nuget:?package=MinimatR&version=1.2.2

// Install MinimatR as a Cake Tool
#tool nuget:?package=MinimatR&version=1.2.2

Minimatr - Minimal API with MediatR

Create a clean and simple architecture of .Net minimal API using MediatR.

Dependencies

  • .NET 6
  • MediatR

Features

  • Simple implementation
  • OpenAPI documentation support
  • Endpoint filter support

Quick Start

Program.cs

var builder = WebApplication.CreateBuilder(args);
var assembly = Assembly.GetExecutingAssembly();
var services = builder.Services;

services.AddMinimatr(assembly);
services.AddMediatR(assembly);

var app = builder.Build();
app.MapAllRequests();

app.Run();

Somewhere in project

[MapGet("/hello/{id}")]
public class SampleGetRequest : IEndpointRequest {
    [FromRoute]
    public Guid Id { get; set; }
    
    [FromQuery]
    public string? Value { get; set; }
    
}

public class SampleGetRequestHandler : IEndpointHandler<SampleGetRequest> {
    public async Task<IResult> Handle(SampleGetRequest request, CancellationToken cancellationToken) {
        return Results.Ok(request);
    }
}

Quick Tip

Do not let your IDE to add Microsoft.AspNetCore.Mvc namespace.

Product Compatible and additional computed target framework versions.
.NET net6.0 is compatible.  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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on MinimatR:

Package Downloads
MinimatR.OpenApi

Package Description

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
2.0.0-rc4 854 3/21/2023
2.0.0-rc3 987 12/22/2022
1.2.2 697 11/24/2022
1.2.1 1,161 10/21/2022
1.2.0 990 9/13/2022
1.1.0 1,360 9/3/2022
1.0.2 1,220 8/13/2022
1.0.1 1,127 8/12/2022
1.0.0 1,140 8/12/2022