Xpandables.Net.EntityFramework 6.0.2

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

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

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.

Here are some examples of use :

Web Api using CQRS and EFCore

Add the following nuget packages to your project :

Xpandables.Net.AspNetCore

Xpandables.Net.EntityFramework

Model Definition

// Entity is the domain object base implementation that provides with an Id,
// key generator for id and some useful state methods.
// You can use Aggregate{TAggregateId} if you're targeting DDD.

public sealed class PersonEntity : Entity
{
    public string FirstName { get; private set; }
    public string LastName { get; private set; }
    
    public static PersonEntity NewPerson(Guid id, string firstName, string lastName)
    {
        // custom check
        return new(id, fistName, lastname);
    }
    
    public void ChangeFirstName(string firstName)
        => FirstName = firstName ?? throw new ArgumentNullException(nameof(firstName));
    
    public void ChangeLastName(string lastName)
        => LastName = lastName ?? throw new ArgumentNullException(nameof(lastName));
    
    private PersonEntity(Guid id, string firstName, string lastName)
        => (Id, FirstName, Lastname) = (id, firstName, lastName);
}

Contract definition

// Contract is decorated with HttpClientAttribute that describes the parameters for a request 
// used with IHttpClientDispatcher, where IHttpClientDispatcher provides with methods to handle HTTP
// Rest client queries and commands using a typed client HTTP Client. It also allows, in a .Net environment,
// to no longer define client actions because they are already included in the contracts, 
// by implementing interfaces such as IHttpRequestPathString, IHttpRequestFormUrlEncoded,
// IHttpRequestMultipart, IHttpRequestString, IHttpRequestStream...
// Without the use of one of those interfaces, the whole class will be serialized.


[HttpClient(Path = "api/person", In = ParameterLocation.Body, Method = ParameterMethod.Post, IsSecured = false)]
public sealed record AddPersonRequest([Required] Guid Id, [Required] string FirstName, [Required] string LastName)
    : IHttpClientRequest, IHttpRequestString
{
    // You can omit the use of IHttpRequestString, the whole class will be serialised.
    public object GetStringContent() => new { Id, FirstName, LastName };
}

[HttpClient(Path = "api/person/{id}", IsNullable = true, In = ParameterLocation.Path, 
    Method = ParameterMethod.Get, IsSecured = false)]
public sealed record GetPersonRequest([Required] Guid Id) : IHttpClientRequest<Person>,
    IHttpRequestPathString
{
    public IDictionary<string, string> GetPathStringSource()
        => new Dictionary<string, string> { { nameof(Id), Id.ToString() } };
}

public sealed record Person(Guid Id, string FirstName, string LastName);

Command/Query and Handler definitions


// The command must implement the ICommand interface and others to enable their behaviors.
// Such as IValidatorDecorator to apply validation before processing the command,
// IPersistenceDecorator to add persistence to the control flow
// or IInterceptorDecorator to add interception of the command process...

// You can derive from QueryExpression{TClass} to allow command to behave like an expression
// when querying data, and override the target method.

public sealed class AddPersonCommand : QueryExpression<PersonEntity>, ICommand,
    IValidatorDecorator
{
    public Guid Id { get; }
    public string FirstName { get; }
    public string LastName { get; }
    
    public override Expression<Func<PersonEntity>, bool>> GetExpression()
        => person => person.Id == Id;
}

public sealed class GetPersonQuery : QueryExpression<PersonEntity>, IQuery<Person>
{
    public Guid Id { get; }
    
    public GetPersonQuery(Guid id) => Id= id;
    
    public override Expression<Func<PersonEntity>, bool>> GetExpression()
        => person => person.Id == Id;    
}


public sealed class AddPersonCommandHandler : ICommandHandler<AddPersonCommand>
{
    // We do not use a data context here but a delegate that makes thing more simple for test.

    private readonly Func<PersonEntity, ValueTask> _savePerson;
    public AddPersonCommandHandler(Func<PersonEntity, ValueTask> savePerson)
        => _savePerson = savePerson;
    
    public async ValueTask<IOperationResult> HandleAsync(AddPersonCommand command, 
        CancellationToken cancellationToken = default)
    {
        // You can check here for data validation or use a specific class for that
        // (see AddPersonCommandValidationDecorator).
        
        var newPerson = Person.NewPerson(
            command.Id,
            command.FirstName,
            command.LastName);
        
        await _savePerson(newPerson).configureAwait(false);
        
        // The return result

        return OperationResult
            .Ok()
            .AddHeaders("newId",newPerson.Id);

        // or you can use the OperationResult.Created(...) response.
        
        // Ok, NotFound... are extension methods that return an IOperationResult that acts like
        // IActionResult in AspNetCore.
        // The OperationResultFilter will process the output message format.
        // You can add a decorator class to manage the exception.
    }
}

public sealed class GetPersonQueryHandler : IQueryHandler<GetPersonQuery, Person>
{
    private readonly Func<Guid, CancellationToken, ValueTask<PersonEntity?>> _getPerson;
    public GetPersonQueryHandler(Func<Guid, ValueTask<PersonEntity?>> getPerson)
        => _getPerson = getPerson;    
    
    public override async ValueTask<IOperationResult<Person>> HandleAsync(GetPersonQuery query,
        CancellationToken cancellationToken = default)
    {
        var result = await _getPerson(query.Id, cancellationToken).configureAwait(false);
        
        return result switch
        {
            PersonEntity person => OperationResult.Ok(new Person(person.Id, person.FirstName, person.LastName)),
            _ => OperationResult.NotFound<Person>(nameof(query.Id), "Id not found.")
        };
    }        
}

// When using validation decorator.
// Validator{T} defines a method contract used to validate a type-specific argument using a decorator.
// The validator get called during the control flow before the handler.
// If the validator returns a failed operation result or throws exception, the execution will be interrupted
// and the result of the validator will be returned.
// We consider as best practice to handle common conditions without throwing exceptions
// and to design classes so that exceptions can be avoided.

public sealed class AddPersonCommandValidationDecorator : IValidator<AddPersonCommand>
{
    private readonly Func<Guid, bool> _personExists;
    public AddPersonCommandValidationDecorator(Func<Guid, bool> personExists)
        => _personExists = personExists;
    
    public ValueTask<IOperationResult> Validate(AddPersonCommand argument)
    {
        return _personExists(argument.Id) switch
        {
            true => new(OperationResult.Conflict(nameof(argument.Id), "Id already exist")),
            _ => new(OperationResult.Ok())
        };
    }    
}

Context definition


// We are using EFCore

public sealed class PersonEntityTypeConfiguration : IEntityTypeConfiguration<PersonEntity>
{
    public void Configure(EntityTypeBuilder<PersonEntity> builder)
    {
        builder.HasKey(p => p.Id);
        builder.Property(p => p.FirstName);
        builder.Property(p => p.LastName);
    }
}

// Context is an abstract class that inherits from DbContext (EFCore) and adds some behaviors.

public sealed class PersonContext : DataContext
{
     public PersonContext(DbContextOptions<PersonContext> contextOptions)
        : base(contextOptions) { }
        
     protected override void OnModelCreating(ModelBuilder modelBuilder)
     {
         modelBuilder.ApplyConfiguration(new PersonEntityTypeConfiguration());
     }
     
     public DbSet<PersonEntity> People { get; set; } = default!;
}

Controller definition

// IDispatcher provides with methods to discover registered handlers at runtime.
// We consider as best practice to return ValidationProblemDetails/ProblemDetails in case of errors

[Route("api/[controller]")]
[ApiController]
[AllowAnonymous]
public class PersonController : ControllerBase
{
    private readonly IDispatcher _dispatcher;
    
    public PersonController(IDispatcher dispatcher) 
       => _dispatcher = dispatcher ?? throw new ArgumentNullException(nameof(dispatcher));

    [HttpPost]
    [ProducesResponseType(StatusCodes.Status400BadRequest, Type = typeof(ValidationProblemDetails))]
    [ProducesResponseType(StatusCodes.Status201Created)]
    public async Task<IActionResult> AddPersonAsync(
        [FromBody] AddPersonRequest request, CancellationToken cancellationToken = default)
    {
        var command = new AddPersonCommand(request.Id, request.FirstName, request.LastName);
        IOperationResult result = await _dispatcher.SendAsync(command, cancellationToken)
            .ConfigureAwait(false);
        return Ok(result);
    }
    
    [HttpGet]
    [Route("{id}")]
    [ProducesResponseType(StatusCodes.Status404NotFound, Type = typeof(ValidationProblemDetails))]
    [ProducesResponseType(StatusCodes.Status200OK, Type = typeof(Person))]
    public async Task<IActonResult> GetPersonAsync(
        [FromRoute] GetPersonRequest request, cancellationToken cancellationToken = default)
    {
        var query = new GetPersonQuery(request.Id);
        IOperationResult<Person> personResult = await _dispatcher.FetchAsync(query, cancellationToken)
            .ConfigureAwait(false));

        return Ok(personResult);
    }    

    // ...
        
}

// The startup class
// We will register handlers, context, validators and decorators.

public static class EntityExtensions
{
    internal static bool EntityExists<TEntity, TentityId>(
        this DataContext dataContext, TEntityId entityId)
        where TEntity : Entity
        where TEntityId : notnul
        => dataContext.Find<TEntity>(new object[] { entityId}) is not null;

    internal static async ValueTask<TEntity?> FindEntity<TEntity, TEntityId>(
        this DataContext dataContext, 
        TEntityId entittyId, CancellationToken cancellationToken = default)
        where TEntity : Entity
        where TEntityId : notnull
        => await dataContext.FindAsync<TEntity>(
            new object[] { entittyId }, cancellationToken).ConfigureAwait(false);

    internal static async ValueTask AddAndSaveEntity<TEntity>(
        this DataContext dataContext, TEntity entity, CancellationToken cancellationToken = default)
        where TEntity : Entity
    {
        await dataContext.AddAsync(entity, cancellationToken).ConfigureAwait(false);
        await dataContext.SaveChangesAsync(cancellationToken).ConfigureAwait(false);
    }
}

public sealed class Startup
{
    public void ConfigureServices(IServiceCollection services)
    {
        services.AddOptions();
        
        // common registrations...
        
        services.AddXpandableServices()
            .AddXOperationResultExceptionMiddleware()
            .AddXOperationResultConfigureJsonOptions()
            .AddXOperationResultConfigureMvcOptions()
            .AddXDataContext<PersonContext>(Servicelifetime.Scoped, options => options.UseInMemoryDatabase(nameof(PersonContext))
            .AddXDispatcher()
            .AddXHandlerProvider()
            .AddXHandlers(
                options =>
                {
                    options.UsePersistenceDecorator();
                    options.UseValidatorDecorator();
                },
                ServiceLifetime.Scoped,
                typeof(AddPersonCommandHandler).Assembly)
            .AddXPersistenceDecoratorDelegate(provider =>
            {
                var context = provider.GetRequiredService<PersonContext>();
                return context.SaveChangesAsync;
            })
            .Build()
            .AddControllers();

        // add delegates
        services.AddScoped<Func<Guid, bool>>(provider =>
            provider.GetRequiredService<PersonContext>().EntityExists<PersonEntity, Guid>);

        services.AddScoped<Func<Guid, CancellationToken, ValueTask<PersonEntity?>>>(provider =>
            provider.GetRequiredService<PersonContext>().FindEntity<PersonEntity, Guid>);

        services.AddScoped<Func<PersonEntity, ValueTask>>(provider =>
            provider.GetRequiredService<PersonContext>().AddAndSave<PersonEntity>);

        // AddXpandableServices() will make available methods for registration
        // AddXOperationResultExceptionMiddleware() handles the OperationResult exception
        // AddXOperationResultConfigureJsonOptions() will add operation result converters
        // AddXOperationResultConfigureMvcOptions() will add operation result filers        
        // AddXDataContext{TContext} registers the TContext
        // AddXDispatcher() registers the dispatcher
        // AddXHandlerProvider() registers a handlers provider
        // AddXHandlers(serviceLifetime, options, assemblies) registers all handlers and associated classes (validators, decorators...)
        // according to the options set.
        
        // ...
    }
    
    // This method gets called by the runtime. Use this method to configure the HTTP request pipeline.
    public void Configure(IApplicationBuilder app, IWebHostEnvironment env)
    {
        ...
        app.UseXpandableApplications()
            .UseXOperationResultExceptionMiddleware();
        
        ... 
    }
}

Wep Api Test class

We are using the MSTest template project. You can use another one. Add this package to your test project : Microsoft.AspNetCore.Mvc.Testing reference to your api test project.


[TestMethod]
[DataRow("My FirstName", "My LastName")
public async Task AddPersonTestAsync(string firstName, string lastName)
{
    // Build the api client
    
    Environment.SetEnvironmentVariable("ASPNETCORE_ENVIRONMENT", "Development");
    var factory = new WebApplicationFactory<Program>(); // from the api
    var client = factory.CreateClient();
    
    // if you get serialization error (due to System.Text.Json), you can
    // set the serialization options by using an extension method or by globally
    // setting the IHttpClientDispatcher.SerializerOptions property.
    
    using var httpClientDispatcher = new HttpClientDispatcher(
        new HttpClientRequestBuilder(),
        new HttpClientResponseBuilder(),
        client);

    var addPersonRequest = new AddPersonRequest(GuidGuid.NewGuid(), firstName, lastName);
    using var response = await httpClientDispatcher.SendAsync(addPersonRequest).ConfigureAwait(false);

    if (!response.IsValid())
    {
         Trace.WriteLine($"{response.StatusCode}");
         IOperationResult operationResult = response.ToOperationResult();
         
         // ToOperationResult() is an extension method for HttpRestClientResponse that returns
         // an IOperationResult from the response.
         
         foreach (OperationError error in operationResult.Errors)         
         {
            Trace.WriteLine($"Key : {error.Key}");
            Trace.WriteLine(error.ErrorMessages.StringJoin(";"));
         }         
    }
    else
    {
        string createdId = response.Headers["newId"];
        Trace.WriteLine($"Added person : {createdId}");
    }
}

Blazor WebAss with Web Api using IHttpClientDispatcher

Blazor WebAss project

Add the following nuget packages : Xpandables.Net.BlazorExtended

In the Program file, replace the default code with this.


public class Program
{
    public static async Task Main(string[] args)
    {
       var builder = WebAssemblyHostBuilder.CreateDefault(args);
        builder.RootComponents.Add<App>("#app");
        
        builder.Services
            .AddOptions()
            .AddXpandableServices()
                .AddXHttpClientDispatcher(httpClient =>
                {
                    httpClient.BaseAddress = new Uri("https://localhost:44396"); // your api url
                    httpClient.DefaultRequestHeaders
                        .Accept
                        .Add(new MediaTypeWithQualityHeaderValue(ContentType.Json));
                })
            .Build();
        
        // AddXHttpClientDispatcher(httpClient) will add the IHttpClientDispatcher
        // implementation using the HttpClient with your configuration.
        // if you get errors with System.Text.Json, you can use IHttpClientDispatcher.SerializerOptions
        // property to globally set the serializer options or use extension methods in your code.
                
        // custom code...
        
        await builder.Build().RunAsync();
    }
}

AddPerson.razor


<EditForm Model="@model" OnValidSubmit="AddSubmitAsync">

    <XDataAnnotationsValidator @ref="@Validator" />

    <div class="form-group">
        <label for="FirstName" class="-form-label">First Name</label>
        <XInputText @bind-Value="model.FirstName" type="text" class="form-control" />
        <ValidationMessage For="@(() => model.FirstName)" />
    </div>

    <div class="form-group">
        <label for="LastName" class="col-form-label">Last Name</label>
        <XInputText @bind-Value="model.LastName" type="text" class="form-control" />
        <ValidationMessage For="@(() => model.LastName)" />
    </div>

    <div class="form-group">
        <div class="col-md-12 text-center">
            <button class="col-md-12 btn btn-primary">
                Add
            </button>
        </div>
    </div>

</EditForm>

XInputText is a component that allows text to be validated on input.

XDataAnnotationsValidator is a DataAnnotationsValidator derived class that allows insertion of external errors to the edit context.

AddPerson.razor.cs


public sealed class PersonModel
{
    [Required]
    public string FirstName { get; set; } = default!;
    [Required]
    public string LastName { get; set; } = default!;
}

public partial class AddPerson
{
    protected XDataAnnotationsValidator Validator { get; set; } = default!;
    [Inject]
    protected IHttpClientDispatcher HttpClientDispatcher { get; set; } = default!;
    
    private readonly PersonModel model = new();
    
    protected async Task AddSubmitAsync()
    {
        // You can use the AddPersonRequest from the api or create another class
        // We do not specify the action here because the AddPersonRequest definition
        // already hold all the necessary information.
        
        var addRequest = new AddPersonRequest(Guid.NewGuid(), model.FirstName, model.LastName);
        using var addResponse = await HttpClientDispatcher.SendAsync(addRrequest).ConfigureAwait(false);

        IOperationResult operationResult = addResponse.ToOperationResult();
        Validator.ValidateModel(operationResult);

        if (addResponse.IsValid()) // or operationResult.IsSuccess
        {
            // custom code like displaying the result
            var createdId = operationResult.Headers["newId"];
        }
    }    
}

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()
                .AddXDispatcher()
                .AddXTokenEngine<TokenEngine>()
            .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<IOperationResult> HandleAsync(
        AddPersonCommand command, CancellationToken cancellationToken = default)
    {
        _logger.Information(...);
        
        var response = await _decoratee.HandleAsync(command, cancellationToken).configureAwait(false);
        
        _logger.Information(...)
        
        return response;
    }
}

// Registration

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 : class, 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<IOperationResult<TResult>> 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 class and implement ICommand{TResult} interface

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

Others

Libraries also provide with DDD model implementation 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 (1)

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

Package Downloads
Xpandables.Net.EntityFramework.DependencyInjection

A utility library in .Net5 that adds dependency injection to Xpandables.Net.EntityFramework

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
8.0.1 88 2/11/2024
8.0.0 119 12/3/2023
8.0.0-rc.2.1.1 73 11/12/2023
8.0.0-rc.2.1 56 11/6/2023
8.0.0-rc.2.0 62 11/5/2023
7.3.3 188 5/9/2023
7.1.4 265 2/26/2023
7.1.3 270 2/19/2023
7.0.0 343 11/9/2022
7.0.0-rc2.0.1 96 10/12/2022
7.0.0-rc1.0.0 122 9/26/2022
6.1.1 431 8/6/2022
6.0.9 482 7/9/2022
6.0.8 439 6/27/2022
6.0.4 464 3/15/2022
6.0.3 447 2/22/2022
6.0.2 291 1/4/2022
6.0.1 295 12/4/2021
6.0.0 352 11/8/2021
6.0.0-rc.4.3 138 11/3/2021
6.0.0-rc.3.1 150 10/15/2021
6.0.0-rc.3 142 10/14/2021
6.0.0-rc.2 136 9/21/2021
6.0.0-preview.5 149 8/26/2021
5.6.1 394 6/30/2021
5.6.0 398 6/9/2021
5.5.1 369 5/26/2021
5.4.4 329 4/12/2021
5.4.0 446 3/11/2021
5.3.14 404 3/2/2021
5.3.13 386 2/25/2021
5.3.12 405 2/21/2021
5.3.11 364 2/18/2021
5.3.10 351 2/18/2021
5.3.9 387 2/11/2021
5.3.8 404 2/10/2021
5.3.7 383 2/7/2021
5.3.5 352 2/7/2021
5.3.4 363 2/7/2021
5.3.3 371 2/5/2021
5.3.2 373 2/2/2021
5.3.1 405 1/31/2021
5.3.0 404 1/31/2021
5.2.14 444 1/26/2021
5.2.13 391 1/25/2021
5.2.12 423 1/22/2021
5.2.11 418 1/19/2021
5.2.10 374 1/16/2021
5.2.9 389 1/13/2021
5.2.8 403 1/8/2021
5.2.7 439 1/6/2021
5.2.6 440 1/6/2021
5.2.5 469 12/17/2020
5.2.4 413 12/12/2020
5.2.3 415 12/8/2020
5.2.2 397 12/7/2020
5.2.1 446 12/7/2020
5.2.0 501 12/6/2020
5.1.1 533 12/6/2020
5.1.0 438 12/5/2020
5.0.6 453 12/5/2020
5.0.5 411 11/23/2020
5.0.4 420 11/22/2020
5.0.3 547 11/20/2020
5.0.2 448 11/19/2020
5.0.1 473 11/16/2020
5.0.0 433 11/12/2020
5.0.0-rc.2.1.4 255 11/6/2020
5.0.0-rc.2.1.3 261 11/1/2020
5.0.0-rc.2.1.2 225 10/31/2020
5.0.0-rc.2.1.0 280 10/24/2020
5.0.0-rc.2.0.2 183 10/22/2020
5.0.0-rc.2.0.1 224 10/17/2020
5.0.0-rc.2.0.0 220 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 331 10/10/2020
5.0.0-rc.1.1.2 225 10/4/2020
5.0.0-rc.1.1.1 232 10/2/2020
5.0.0-rc.1.1.0 213 10/1/2020
5.0.0-rc.1.0.9 273 9/29/2020
5.0.0-rc.1.0.8 202 9/28/2020
5.0.0-rc.1.0.7 242 9/28/2020
5.0.0-rc.1.0.6 297 9/26/2020
5.0.0-rc.1.0.5 249 9/25/2020
5.0.0-rc.1.0.4 213 9/24/2020
5.0.0-rc.1.0.3 276 9/23/2020
5.0.0-rc.1.0.2 233 9/23/2020
5.0.0-rc.1.0.1 219 9/21/2020
5.0.0-preview.2.0.0 234 8/16/2020
5.0.0-preview.1.0.8 214 8/10/2020
5.0.0-preview.1.0.7 274 8/10/2020
5.0.0-preview.1.0.6 282 8/5/2020
3.2.1 472 9/17/2020
3.2.0 498 9/15/2020
3.1.9 469 9/13/2020
3.1.8 516 9/13/2020
3.1.7 435 9/12/2020
3.1.6 604 9/5/2020
3.1.5 457 9/4/2020
3.1.4 548 8/29/2020
3.1.3 479 8/28/2020
3.1.2 461 8/27/2020
3.1.1 449 8/24/2020
3.1.0 498 8/19/2020

Breaking changes : Merge Xpandables.Net.DependencyInjection into Xpandables.Net