![]() |
VOOZH | about |
dotnet add package Fluxera.Extensions.OData.Abstractions --version 8.0.7
NuGet\Install-Package Fluxera.Extensions.OData.Abstractions -Version 8.0.7
<PackageReference Include="Fluxera.Extensions.OData.Abstractions" Version="8.0.7" />
<PackageVersion Include="Fluxera.Extensions.OData.Abstractions" Version="8.0.7" />Directory.Packages.props
<PackageReference Include="Fluxera.Extensions.OData.Abstractions" />Project file
paket add Fluxera.Extensions.OData.Abstractions --version 8.0.7
#r "nuget: Fluxera.Extensions.OData.Abstractions, 8.0.7"
#:package Fluxera.Extensions.OData.Abstractions@8.0.7
#addin nuget:?package=Fluxera.Extensions.OData.Abstractions&version=8.0.7Install as a Cake Addin
#tool nuget:?package=Fluxera.Extensions.OData.Abstractions&version=8.0.7Install as a Cake Tool
A library that extends the Microsoft.Extensions.* libraries with custom functionality and also provices custom extensions.
Fluxera.Extensions.CachingThis extension contains Option classes for configuring a remote distributed cache server and
several useful extension methods for the IDistributedCache service.
Fluxera.Extensions.CommonThis 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.DataManagementThis extension contains an infrastructure for inserting seed data into databases.
Fluxera.Extensions.DependencyInjectionThis extension contains several additions to the dependency injection extension.
Lazy<T> as open generic sevice type. Any service will be resolved lazily from it.IServiceCollection while still configuring services.Fluxera.Extensions.HttpThis 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.LocalizationThis extension contains several extension methods IStringLocalizer service.
Fluxera.Extensions.ODataThis 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.ValidationThis 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>();
});
});
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net6.0 net6.0 is compatible. net6.0-android net6.0-android was computed. net6.0-ios net6.0-ios was computed. net6.0-maccatalyst net6.0-maccatalyst was computed. net6.0-macos net6.0-macos was computed. net6.0-tvos net6.0-tvos was computed. net6.0-windows net6.0-windows was computed. net7.0 net7.0 is compatible. net7.0-android net7.0-android was computed. net7.0-ios net7.0-ios was computed. net7.0-maccatalyst net7.0-maccatalyst was computed. net7.0-macos net7.0-macos was computed. net7.0-tvos net7.0-tvos was computed. net7.0-windows net7.0-windows was computed. net8.0 net8.0 is compatible. net8.0-android net8.0-android was computed. net8.0-browser net8.0-browser was computed. net8.0-ios net8.0-ios was computed. net8.0-maccatalyst net8.0-maccatalyst was computed. net8.0-macos net8.0-macos was computed. net8.0-tvos net8.0-tvos was computed. net8.0-windows net8.0-windows was computed. net9.0 net9.0 was computed. net9.0-android net9.0-android was computed. net9.0-browser net9.0-browser was computed. net9.0-ios net9.0-ios was computed. net9.0-maccatalyst net9.0-maccatalyst was computed. net9.0-macos net9.0-macos was computed. net9.0-tvos net9.0-tvos was computed. net9.0-windows net9.0-windows was computed. net10.0 net10.0 was computed. net10.0-android net10.0-android was computed. net10.0-browser net10.0-browser was computed. net10.0-ios net10.0-ios was computed. net10.0-maccatalyst net10.0-maccatalyst was computed. net10.0-macos net10.0-macos was computed. net10.0-tvos net10.0-tvos was computed. net10.0-windows net10.0-windows was computed. |
Showing the top 1 NuGet packages that depend on Fluxera.Extensions.OData.Abstractions:
| Package | Downloads |
|---|---|
|
Fluxera.Extensions.OData
The custom extensions for odata client. |
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated |
|---|---|---|
| 8.0.7 | 410 | 4/13/2024 |
| 8.0.6 | 315 | 4/13/2024 |
| 8.0.5 | 354 | 3/19/2024 |
| 8.0.4 | 461 | 2/22/2024 |
| 8.0.3 | 415 | 1/21/2024 |
| 8.0.2 | 580 | 1/4/2024 |
| 8.0.1 | 378 | 11/23/2023 |
| 8.0.0 | 308 | 11/15/2023 |
| 7.2.4 | 391 | 7/23/2023 |
| 7.2.3 | 339 | 7/20/2023 |
| 7.2.2 | 356 | 6/21/2023 |
| 7.2.1 | 386 | 4/29/2023 |
| 7.2.0 | 391 | 4/25/2023 |
| 7.1.3 | 510 | 4/13/2023 |
| 7.1.2 | 452 | 3/16/2023 |
| 7.1.1 | 509 | 2/27/2023 |
| 7.1.0 | 581 | 1/18/2023 |
| 7.0.5 | 676 | 12/22/2022 |
| 7.0.4 | 500 | 12/13/2022 |
| 7.0.3 | 611 | 12/5/2022 |