ResultCommander 2.2.4

dotnet add package ResultCommander --version 2.2.4
                    
NuGet\Install-Package ResultCommander -Version 2.2.4
                    
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="ResultCommander" Version="2.2.4" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="ResultCommander" Version="2.2.4" />
                    
Directory.Packages.props
<PackageReference Include="ResultCommander" />
                    
Project file
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 ResultCommander --version 2.2.4
                    
#r "nuget: ResultCommander, 2.2.4"
                    
#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.
#addin nuget:?package=ResultCommander&version=2.2.4
                    
Install ResultCommander as a Cake Addin
#tool nuget:?package=ResultCommander&version=2.2.4
                    
Install ResultCommander as a Cake Tool

NuGetNuGet Build Status GitHub License Static Badge

ResultCommander

Library featuring a command handler pattern for both synchronous and asynchronous operations.

Uses a functional Result approach for failure-prone operations.

To utilize all features using Autofac is required.

Features

  • Synchronous and asynchronous command handler definitions
  • Definitions and base implementations of commands
  • Supports decorators and adapters via Autofac's methods

Description

There are two command types - one that only returns a Result and one that returns an additional entity contained within the Result.

Every handler must return a Result struct which determines whether the operation succedeed or not, handlers may or may not return additional results contained within the Result struct - this is defined by the handled comand.

Installation

To register handlers with the DI container use the ContainerBuilder or IServiceCollection extension methods provided by the library:

builder.AddResultCommander(assembliesToScan);

To register decorators or adapters use the methods available on ResultCommanderConfiguration like so:

builder.AddResultCommander(assembliesToScan, options => 
{
    options.AddDecorator<FancyDecorator, ISyncCommandHandler<SimpleCommand>();
});

You can register multiple decorators and they'll be applied in the order that you register them - read more at Autofac's docs regarding decorators and adapters.

Documentation

Documentation available at https://mikym.github.io/ResultCommander/.

Download

  • ResultCommander - NuGet
  • ResultCommander.Autofac - NuGet

Example usage

<b> You should never throw exceptions from within handlers, they should be exception free - instead return appropriate error results (and catch possible exceptions).</b> Library offers a simple error catching, logging and exception to result error decorators for uses where writing try-catch blocks becomes a pain - but remember that these results will never be as informative as manually returned proper result error types.

A command without a concrete result:

public record SimpleCommand(bool IsSuccess) : ICommand;

And a synchronous handler that handles it:

public class SimpleSyncCommandHandler : ISyncCommandHandler<SimpleCommand>
{
    public Result Handle(SimpleCommand command)
    {
        if (command.IsSuccess)
            return Result.FromSuccess();
            
        return new InvalidOperationError();
    }
}

A command with a concrete result:

public record SimpleCommandWithConcreteResult(bool IsSuccess) : ICommand<int>;

And an asynchronous handler that handles it:

public SimpleAsyncCommandHandlerWithConcreteResult : IAsyncCommandHandler<SimpleCommand, int>
{
    public async Task<Result<int>> Handle(SimpleCommand command)
    {
        if (command.IsSuccess)
            return 1;
            
        return new InvalidOperationError();
    }
}
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 is compatible.  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 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. 
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 ResultCommander:

Package Downloads
ResultCommander.Autofac

Library featuring a command handler pattern.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
2.2.4 170 7/23/2024
2.2.3 259 1/22/2024
2.2.2 265 11/22/2023
2.2.1 156 11/20/2023
2.2.0 152 11/20/2023
2.1.6 211 8/18/2023
2.1.5 203 8/8/2023
2.1.4 203 7/10/2023
2.1.3 189 6/25/2023
2.1.2 264 5/10/2023
2.1.1 224 4/4/2023
2.1.0 273 3/14/2023
2.0.9 281 2/21/2023
2.0.8 337 1/9/2023
2.0.7 303 1/9/2023
2.0.6 403 11/21/2022
2.0.5 349 11/21/2022
2.0.4 366 11/21/2022
2.0.3 372 11/19/2022
2.0.2 352 11/19/2022
2.0.1 346 11/19/2022
2.0.0 341 11/19/2022
1.1.17 441 9/27/2022
1.1.16 425 9/27/2022
1.1.15 464 9/26/2022
1.1.14 463 9/24/2022
1.1.13 419 9/24/2022
1.1.12 464 9/24/2022
1.1.11 450 9/24/2022
1.1.10 454 9/24/2022
1.1.9 452 9/24/2022
1.1.8 438 9/24/2022
1.1.7 435 9/24/2022
1.1.6 440 9/19/2022
1.1.5 453 9/19/2022
1.1.4 440 9/19/2022
1.1.3 442 9/19/2022
1.1.2 438 9/19/2022
1.1.0 468 9/17/2022
1.0.14 439 8/28/2022
1.0.13 432 8/24/2022
1.0.12 434 8/24/2022
1.0.11 430 8/24/2022
1.0.10 421 8/24/2022
1.0.9 427 8/24/2022
1.0.8 433 8/24/2022
1.0.7 432 8/24/2022
1.0.6 435 8/23/2022
1.0.5 425 8/23/2022
1.0.4 434 8/23/2022
1.0.3 433 8/23/2022
1.0.2 429 8/23/2022
1.0.1 441 8/22/2022
1.0.0 427 8/22/2022