Xpandables.Net 6.0.9

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

// Install Xpandables.Net as a Cake Tool
#tool nuget:?package=Xpandables.Net&version=6.0.9

Xpandables.Net

Provides with useful interfaces contracts in .Net 6.0 and some implementations mostly following the spirit of SOLID principles, CQRS... The library is strongly-typed, which means it should be hard to make invalid requests and it also makes it easy to discover available methods and properties though IntelliSense.

Feel free to fork this project, make your own changes and create a pull request.

Read the Xpandables.Net.Samples for a minimal Web Api implementation using multi-tenancy with aggregates. You may need to create a PostgreSql database using the migration definitions.

Features

Usually, when registering types, we are forced to reference the libraries concerned and we end up with a very coupled set. To avoid this, you can register these types by calling an export extension method, which uses MEF: Managed Extensibility Framework.

In your api startup class


// AddXServiceExport(IConfiguration, Action{ExportServiceOptions}) adds and configures registration of services using 
// the IAddServiceExport interface implementation found in the target libraries according to the export options.
// You can use configuration file to set up the libraries to be scanned.

public class Startup
{
    ....
    services
        .AddXpandableServices()
            .AddXServiceExport(Configuration, options => options.SearchPattern = "your-search-pattern-dll")
        .Build();
    ...
}

In the library you want types to be registered


[Export(typeof(IAddServiceExport))]
public sealed class RegisterServiceExport : IAddServiceExport
{
    public void AddServices(IServiceCollection services, IConfiguration configuration)
    {
        services
            .AddXpandableServices()
                .AddXCommandDispatcher()
                ...
            .Build();
        ....
    }
}

Decorator pattern

You can use the extension methods to apply the decorator pattern to your types.


// This method and its extensions ensure that the supplied TDecorator" decorator is returned, wrapping the original 
// registered "TService", by injecting that service type into the constructor of the supplied "TDecorator". 
// Multiple decorators may be applied to the same "TService". By default, a new "TDecorator" instance 
// will be returned on each request, 
// independently of the lifestyle of the wrapped service. Multiple decorators can be applied to the same service type. 
// The order in which they are registered is the order they get applied in. This means that the decorator 
// that gets registered first, gets applied first, which means that the next registered decorator, 
// will wrap the first decorator, which wraps the original service type.

 services
    .AddXpandableServices()
        .XTryDecorate<TService, TDecorator>()
    .Build();
   

Suppose you want to add logging for the AddPersonCommand ...


// The AddPersonCommand decorator for logging

public sealed class AddPersonCommandHandlerLoggingDecorator : 
    ICommandHandler<AddPersonCommand>
{
    private readonly ICommandHandler<AddPersonCommand> _decoratee;
    private readonly ILogger<AddPersonCommandHandler> _logger;
    
    public AddPersonCommandHandlerLoggingDecorator(
        ILogger<AddPersonCommandHandler> logger,
        ICommandHandler<AddPersonCommand> decoratee)
        => (_logger, _decoratee) = (logger, decoratee);

    public async ValueTask<OperationResult> HandleAsync(
        AddPersonCommand command, CancellationToken cancellationToken = default)
    {
        _logger.Information(...);
        
        var response = await _decoratee.HandleAsync(command, cancellationToken).configureAwait(false);
        
        _logger.Information(...)
        
        return response;
    }
}

// Register

services
    .AddXpandableServices()
        .XTryDecorate<AddPersonCommandHandler, AddPersonCommandHandlerLoggingDecorator>()
    .Build();

 // or

services.AddXpandableServices()
    .AddXHandlers(
        options =>
        {
            options.UseValidatorDecorator(); // this option will add the command decorator registration
        },
        typeof(AddPersonCommandHandler).Assembly)
    .Build()

// or you can define the generic model, for all commands that implement ICommand 
// interface or something else.

public sealed class CommandLoggingDecorator<TCommand> : ICommandHandler<TCommand>
    where TCommand : notnull, ICommand // you can add more constraints
{
    private readonly ICommandHandler<TCommand> _ decoratee;
    private readonly ILogger<TCommand> _logger;
    
    public CommandLoggingDecorator(ILogger<TCommand> logger, ICommandHandler<TCommand> decoratee)
        => (_logger, _ decoratee) = (logger, decoratee);

    public async ValueTask<OperationResult> HandleAsync(
         TCommand command, CancellationToken cancellationToken = default)
    {
        _logger.Information(...);
        
        var response = await _decoratee.HandleAsync(command, cancellationToken).configureAwait(false);
        
        _logger.Information(...)
        
        return response;
    }
}

// and for registration

// The CommandLoggingDecorator will be applied to all command handlers whose commands meet 
// the decorator's constraints : 
// To be a notnull and implement ICommand interface

services
    .AddXpandableServices()
        .XTryDecorate(typeof(ICommandHandler<>), typeof(CommandLoggingDecorator<>))
    .Build();

Aggregate{TAggregateId}

Libraries also provide with DDD model implementation 'Aggregate{TAggregateId}' using event sourcing and out-box pattern.

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 (12)

Showing the top 5 NuGet packages that depend on Xpandables.Net:

Package Downloads
Xpandables.Net.DependencyInjection

A utility library in .Net7.0 to easily add dependency injection using the Xpandables.Net library

Xpandables.Net.EntityFramework

A utility library in .Net8.0 to easily add EntityFramework use to Xpandables.Net

Xpandables.NetCore

A utility library in .Net5.0 to add AspNetCore behaviors to Xpandables.Net.

Xpandables.Net.AspNetCore

A utility library in .Net8.0 that adds AspNetCore behaviors to Xpandables.Net

Xpandables.Net.Windows

A utility library in .Net5.0 to extend Windows Forms and WPF behaviors.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
8.0.1 245 2/11/2024
8.0.0 430 12/3/2023
8.0.0-rc.2.1.1 74 11/12/2023
8.0.0-rc.2.1 59 11/6/2023
8.0.0-rc.2.0 61 11/5/2023
7.3.3 559 5/9/2023
7.1.4 673 2/26/2023
7.1.3 753 2/19/2023
7.0.0 801 11/9/2022
7.0.0-rc2.0.1 89 10/12/2022
7.0.0-rc1.0.0 124 9/26/2022
6.1.1 1,303 8/6/2022
6.0.9 1,350 7/9/2022
6.0.8 1,339 6/27/2022
6.0.4 1,346 3/15/2022
6.0.3 1,317 2/22/2022
6.0.2 974 1/4/2022
6.0.1 1,006 12/4/2021
6.0.0 1,158 11/8/2021
6.0.0-rc.4.3 145 11/3/2021
6.0.0-rc.3.1 148 10/15/2021
6.0.0-rc.3 141 10/14/2021
6.0.0-rc.2 135 9/21/2021
6.0.0-preview.5 143 8/26/2021
5.6.1 1,479 6/30/2021
5.6.0 1,485 6/9/2021
5.5.1 1,452 5/26/2021
5.4.4 1,090 4/12/2021
5.4.0 919 3/11/2021
5.3.14 859 3/2/2021
5.3.13 853 2/25/2021
5.3.12 833 2/21/2021
5.3.11 840 2/18/2021
5.3.10 807 2/18/2021
5.3.9 920 2/11/2021
5.3.8 932 2/10/2021
5.3.7 833 2/7/2021
5.3.6 657 2/7/2021
5.3.5 844 2/7/2021
5.3.4 856 2/7/2021
5.3.3 856 2/5/2021
5.3.2 876 2/2/2021
5.3.1 894 1/31/2021
5.3.0 861 1/31/2021
5.2.14 881 1/26/2021
5.2.13 833 1/25/2021
5.2.12 874 1/22/2021
5.2.11 881 1/19/2021
5.2.10 854 1/16/2021
5.2.9 880 1/13/2021
5.2.8 881 1/8/2021
5.2.7 888 1/6/2021
5.2.6 872 1/6/2021
5.2.5 899 12/17/2020
5.2.4 842 12/12/2020
5.2.3 898 12/8/2020
5.2.2 898 12/7/2020
5.2.1 914 12/7/2020
5.2.0 998 12/6/2020
5.1.1 1,012 12/6/2020
5.1.0 895 12/5/2020
5.0.6 916 12/5/2020
5.0.5 881 11/23/2020
5.0.4 1,019 11/22/2020
5.0.3 1,119 11/20/2020
5.0.2 1,012 11/19/2020
5.0.1 1,353 11/16/2020
5.0.0 1,276 11/12/2020
5.0.0-rc.2.1.4 252 11/6/2020
5.0.0-rc.2.1.3 254 11/1/2020
5.0.0-rc.2.1.2 227 10/31/2020
5.0.0-rc.2.1.0 277 10/24/2020
5.0.0-rc.2.0.2 188 10/22/2020
5.0.0-rc.2.0.1 229 10/17/2020
5.0.0-rc.2.0.0 227 10/17/2020
5.0.0-rc.1.1.5 298 10/11/2020
5.0.0-rc.1.1.4 281 10/11/2020
5.0.0-rc.1.1.3 332 10/10/2020
5.0.0-rc.1.1.2 218 10/4/2020
5.0.0-rc.1.1.1 243 10/2/2020
5.0.0-rc.1.1.0 208 10/1/2020
5.0.0-rc.1.0.9 269 9/29/2020
5.0.0-rc.1.0.8 198 9/28/2020
5.0.0-rc.1.0.7 239 9/28/2020
5.0.0-rc.1.0.6 294 9/26/2020
5.0.0-rc.1.0.5 249 9/25/2020
5.0.0-rc.1.0.4 210 9/24/2020
5.0.0-rc.1.0.3 273 9/23/2020
5.0.0-rc.1.0.2 232 9/23/2020
5.0.0-rc.1.0.1 216 9/21/2020
5.0.0-preview.2.0.0 231 8/16/2020
5.0.0-preview.1.0.8 218 8/10/2020
5.0.0-preview.1.0.7 277 8/10/2020
5.0.0-preview.1.0.6 280 8/5/2020
5.0.0-preview.1.0.5 273 8/3/2020
5.0.0-preview.1.0.4 235 8/3/2020
5.0.0-preview.1.0.3 281 8/2/2020
5.0.0-preview.1.0.2 321 8/2/2020
5.0.0-preview.1.0.1 337 8/2/2020
5.0.0-preview.1.0.0 377 7/25/2020
3.2.1 1,296 9/17/2020
3.2.0 1,314 9/15/2020
3.1.9 1,284 9/13/2020
3.1.8 1,378 9/13/2020
3.1.7 1,293 9/12/2020
3.1.6 1,472 9/5/2020
3.1.5 1,285 9/4/2020
3.1.4 1,399 8/29/2020
3.1.3 1,263 8/28/2020
3.1.2 1,276 8/27/2020
3.1.1 1,304 8/24/2020
3.1.0 1,332 8/19/2020

Fix IEventConverter implementation