AugusteVN.CQRS.Extensions
1.0.2
dotnet add package AugusteVN.CQRS.Extensions --version 1.0.2
NuGet\Install-Package AugusteVN.CQRS.Extensions -Version 1.0.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="AugusteVN.CQRS.Extensions" Version="1.0.2" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="AugusteVN.CQRS.Extensions" Version="1.0.2" />
<PackageReference Include="AugusteVN.CQRS.Extensions" />
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add AugusteVN.CQRS.Extensions --version 1.0.2
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: AugusteVN.CQRS.Extensions, 1.0.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.
#:package AugusteVN.CQRS.Extensions@1.0.2
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=AugusteVN.CQRS.Extensions&version=1.0.2
#tool nuget:?package=AugusteVN.CQRS.Extensions&version=1.0.2
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
CQRS Pattern Extensions
Extensions for the CQRS pattern.
Registration
- Registers implementations for
IQueryHandlerandICommandHandlerusing Scrutor. - Registers implementations for
IQueryBusandICommandBus.
builder.Services.RegisterHandlersFromAssembly(TTypeInAssembly);
Usage
Explicit usage of IQueryHandler and ICommandHandler.
app.MapGet("/", async (
[AsParameters] GetExampleQuery request,
IQueryHandler<GetExampleQuery, ExampleResponse> handler) =>
{
var result = await handler.HandleAsync(request);
if (result.IsFailure) return Results.BadRequest();
return Results.Ok(result.Value);
});
app.MapPost("/", async (
CreateExampleCommand request,
ICommandHandler<CreateExampleCommand> handler) =>
{
var result = await handler.HandleAsync(request);
if (result.IsFailure) return Results.BadRequest();
return Results.Ok(result.Value);
});
Implicit usage by using IQueryBus and ICommandBus.
app.MapGet("/", async (
[AsParameters] GetExampleQuery request,
IQueryBus handler) =>
{
var result = await handler.SendAsync(request);
if (result.IsFailure) return Results.BadRequest();
return Results.Ok(result.Value);
});
app.MapPost("/", async (
CreateExampleCommand request,
ICommandBus handler) =>
{
var result = await handler.SendAsync(request);
if (result.IsFailure) return Results.BadRequest();
return Results.Ok(result.Value);
});
Uses:
- https://www.nuget.org/packages/AugusteVN.CQRS.Contracts/
- https://www.nuget.org/packages/AugusteVN.ResultPattern.Contracts/
Videos:
| 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. net9.0 was computed. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. net10.0 was computed. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.0-windows was computed. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
net8.0
- AugusteVN.CQRS.Contracts (>= 1.0.1)
- AugusteVN.ResultPattern.Contracts (>= 1.0.8)
- Scrutor (>= 7.0.0)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Added QueryBus, CommandBus and implement the Result pattern.