Fluxera.Extensions.Caching.Abstractions 8.1.0

The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org. Prefix Reserved
dotnet add package Fluxera.Extensions.Caching.Abstractions --version 8.1.0
NuGet\Install-Package Fluxera.Extensions.Caching.Abstractions -Version 8.1.0
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="Fluxera.Extensions.Caching.Abstractions" Version="8.1.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Fluxera.Extensions.Caching.Abstractions --version 8.1.0
#r "nuget: Fluxera.Extensions.Caching.Abstractions, 8.1.0"
#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 Fluxera.Extensions.Caching.Abstractions as a Cake Addin
#addin nuget:?package=Fluxera.Extensions.Caching.Abstractions&version=8.1.0

// Install Fluxera.Extensions.Caching.Abstractions as a Cake Tool
#tool nuget:?package=Fluxera.Extensions.Caching.Abstractions&version=8.1.0

Build Status

Fluxera.Extensions

A library that extends the Microsoft.Extensions.* libraries with custom functionality and also provices custom extensions.

Fluxera.Extensions.Caching

This extension contains Option classes for configuring a remote distributed cache server and several useful extension methods for the IDistributedCache service.

Fluxera.Extensions.Common

This extension contains several custom services:

  • IDateTimeOffsetProvider A service that provides mockable access to static DateTimeOffset.
  • IDateTimeProvider A service that provides mockable access to static DateTime.
  • IGuidGenerator A service to generate Guid using different generators.
  • IHashCalculator A service to calculate hashes from input values.
  • IJitterCalculator A service that adds entropy to any given number.
  • IPasswordGenerator A service that generates random passwords.
  • IRetryDelayCalculator A service that calculates retry delay with (truncated) binary exponential back-off.
  • IStringEncryptionService A service that can be used to simply encrypt/decrypt texts.

Fluxera.Extensions.DataManagement

This extension contains an infrastructure for inserting seed data into databases.

Fluxera.Extensions.DependencyInjection

This extension contains several additions to the dependency injection extension.

  • Decorator
    • Add decorators to services.
  • Named Services
    • Add named service implementations.
  • Lazy Services
    • Add Lazy<T> as open generic sevice type. Any service will be resolved lazily from it.
  • Object Accessor
    • Provides a way to access object instances from the IServiceCollection while still configuring services.

Fluxera.Extensions.Http

This extension provides a way to register named HttpClient services and several custom DelegatingHandler implementations.

public interface ITestHttpClientService : IHttpClientService
{
    Task<string> GetSomethingAsync();
}

public class TestHttpClientService : HttpClientServiceBase, ITestHttpClientService
{
    /// <inheritdoc />
    public TestHttpClientService(string name, HttpClient httpClient, RemoteService options)
        : base(name, httpClient, options)
    {
    }

    public async Task<string> GetSomethingAsync()
    {
        HttpResponseMessage response = await this.HttpClient.GetAsync("/");
        return await response.Content.ReadAsStringAsync();
    }
}

services.AddHttpClientService<ITestHttpClientService, TestHttpClientService>(
	context => new TestHttpClientService(context.Name, context.HttpClient, context.Options));

Fluxera.Extensions.Localization

This extension contains several extension methods IStringLocalizer service.

Fluxera.Extensions.OData

This extension provides a way to register named ODataClient services using Simple.OData.Client.

public interface ITestODataClientService : IODataClientService
{
}

public class TestODataClientService : ODataClientServiceBase<Person, string>, ITestODataClientService
{
    /// <inheritdoc />
    public TestODataClientService(string name, string collectionName, IODataClient oDataClient, RemoteService options)
        : base(name, collectionName, oDataClient, options)
    {
    }
}

services.AddODataClientService<ITestODataClientService, TestODataClientService>("People",
    context => new TestODataClientService(context.Name, context.CollectionName, context.ODataClient, context.Options));

Fluxera.Extensions.Validation

This extension provides an abstraction over validation frameworks. Any one framework can be used together with other ones. The validation results will merged by the extension.

At the moment System.ComponentModel.Annotations and FluentValidation is supported. One can configure the validators to use like this:

IServiceCollection services = new ServiceCollection();

services.AddValidation(builder =>
{
    builder
        .AddDataAnnotations()
        .AddFluentValidation(registration =>
        {
            registration.AddValidator<PersonValidator>();
        });
});

References

Steve Collins

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. 
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 Fluxera.Extensions.Caching.Abstractions:

Package Downloads
Fluxera.Extensions.Caching The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

The custom extensions for caching.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
8.1.0 0 4/18/2024
8.0.7 326 4/13/2024
8.0.6 140 4/13/2024
8.0.5 237 3/19/2024
8.0.4 917 2/22/2024
8.0.3 615 1/21/2024
8.0.2 2,331 1/4/2024
8.0.1 814 11/23/2023
8.0.0 580 11/15/2023
7.2.4 617 7/23/2023
7.2.3 322 7/20/2023
7.2.2 571 6/21/2023
7.2.1 685 4/29/2023
7.2.0 677 4/25/2023
7.1.3 1,601 4/13/2023
7.1.2 898 3/16/2023
7.1.1 1,042 2/27/2023
7.1.0 1,485 1/18/2023
7.0.5 1,678 12/22/2022
7.0.4 519 12/13/2022
7.0.3 1,487 12/5/2022
7.0.2 912 11/15/2022
7.0.1 743 11/12/2022
7.0.0 473 11/9/2022
6.1.8 2,359 10/12/2022
6.1.7 5,918 9/20/2022
6.1.6 3,303 9/15/2022
6.1.5 2,278 7/30/2022
6.1.4 2,282 6/30/2022
6.1.3 2,254 6/15/2022
6.1.2 2,993 6/7/2022
6.1.1 667 6/4/2022
6.1.0 670 6/4/2022
6.0.34 686 6/4/2022
6.0.33 10,587 5/28/2022
6.0.32 1,450 5/27/2022
6.0.31 664 5/27/2022
6.0.29 6,969 5/10/2022
6.0.28 2,237 5/5/2022
6.0.27 1,443 4/20/2022
6.0.26 1,434 4/20/2022
6.0.25 677 4/19/2022
6.0.23 2,812 4/11/2022
6.0.22 656 4/11/2022
6.0.20 691 4/10/2022
6.0.19 3,968 3/24/2022
6.0.18 1,562 2/17/2022
6.0.14 1,018 12/17/2021
6.0.13 380 12/14/2021
6.0.11 390 12/13/2021
6.0.8 378 12/13/2021
6.0.6 399 12/13/2021
6.0.4 392 12/13/2021
6.0.2 541 12/12/2021