Savvyio.Extensions.DependencyInjection
0.7.0-rc
See the version list below for details.
dotnet add package Savvyio.Extensions.DependencyInjection --version 0.7.0-rc
NuGet\Install-Package Savvyio.Extensions.DependencyInjection -Version 0.7.0-rc
<PackageReference Include="Savvyio.Extensions.DependencyInjection" Version="0.7.0-rc" />
paket add Savvyio.Extensions.DependencyInjection --version 0.7.0-rc
#r "nuget: Savvyio.Extensions.DependencyInjection, 0.7.0-rc"
// Install Savvyio.Extensions.DependencyInjection as a Cake Addin #addin nuget:?package=Savvyio.Extensions.DependencyInjection&version=0.7.0-rc&prerelease // Install Savvyio.Extensions.DependencyInjection as a Cake Tool #tool nuget:?package=Savvyio.Extensions.DependencyInjection&version=0.7.0-rc&prerelease
Extend the Savvy I/O core assemblies with support for Microsoft Dependency Injection.
Product | Versions 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. |
-
net6.0
- Cuemon.Extensions.DependencyInjection (>= 6.4.1)
- Savvyio (>= 0.7.0-rc)
NuGet packages (8)
Showing the top 5 NuGet packages that depend on Savvyio.Extensions.DependencyInjection:
Package | Downloads |
---|---|
Savvyio.Extensions.EFCore
Extend the Savvy I/O core assemblies with support for Microsoft Entity Framework Core. |
|
Savvyio.Extensions.DependencyInjection.Domain
Extend the Savvy I/O support for Microsoft Dependency Injection - optimized for DDD (Domain Driven Design). |
|
Savvyio.Extensions.DependencyInjection.EFCore
Extend the Savvy I/O support for Microsoft Dependency Injection with Microsoft Entity Framework Core implementation. |
|
Savvyio.Extensions.DependencyInjection.Dapper
Extend the Savvy I/O support for Microsoft Dependency Injection with Dapper implementation. |
|
Savvyio.App
Provides a complete and convenient set of API additions for building a DDD, CQRS and Event Sourcing enabled .NET application using Microsoft Dependency Injection, Microsoft Entity Framework Core, Dapper, AWS SNS/SQS and Azure Queue Storage/Azure Event Grid. |
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
4.0.0 | 148 | 11/13/2024 |
4.0.0-rc.1 | 49 | 11/12/2024 |
4.0.0-preview.2 | 49 | 10/6/2024 |
4.0.0-preview.1 | 54 | 9/6/2024 |
3.0.0 | 324 | 9/1/2024 |
3.0.0-preview.3 | 88 | 8/13/2024 |
3.0.0-preview.2 | 44 | 8/4/2024 |
3.0.0-preview.1 | 44 | 7/31/2024 |
2.2.0 | 346 | 4/10/2024 |
2.1.0 | 361 | 3/5/2024 |
2.1.0-preview.17 | 85 | 3/3/2024 |
2.1.0-preview.14 | 62 | 3/2/2024 |
2.1.0-preview.12 | 69 | 2/28/2024 |
2.1.0-preview | 335 | 2/26/2024 |
2.0.0 | 342 | 2/11/2024 |
2.0.0-preview.16 | 67 | 2/5/2024 |
2.0.0-preview.13 | 128 | 1/7/2024 |
2.0.0-preview.6 | 92 | 1/3/2024 |
2.0.0-preview | 252 | 1/2/2024 |
1.2.0-preview | 347 | 11/23/2023 |
1.1.0 | 1,078 | 12/6/2022 |
1.0.0 | 1,078 | 11/9/2022 |
0.8.0-rc | 346 | 6/1/2022 |
0.7.0-rc | 376 | 5/11/2022 |
Version: 0.7.0
Availability: .NET 6.0
# New Features
- ADDED IDataStore interface in the Savvyio.Extensions.DependencyInjection namespace that defines a generic way to support multiple implementations that does the actual I/O communication towards a data store
- ADDED SavvyioDependencyInjectionOptions class in the Savvyio.Extensions.DependencyInjection namespace that specifies options that is related to setting up Savvy I/O services
- ADDED ServiceCollectionExtensions class in the Savvyio.Extensions.DependencyInjection namespace that consist of extension methods for the IServiceCollection interface: AddDataStore, AddServiceLocator, AddSavvyIO
- ADDED IDataAccessObject interface in the Savvyio.Extensions.DependencyInjection.Data namespace that defines a generic way to support multiple implementations of persistent data access based on the Data Access Object pattern
- ADDED IDeletableDataAccessObject interface in the Savvyio.Extensions.DependencyInjection.Data namespace that defines a generic way to support multiple implementations of deletable data access objects (cruD)
- ADDED IPersistentDataAccessObject interface in the Savvyio.Extensions.DependencyInjection.Data namespace that defines a generic way to support multiple implementations of the actual I/O communication with a data store that is responsible of persisting data (CRUD)
- ADDED IReadableDataAccessObject interface in the Savvyio.Extensions.DependencyInjection.Data namespace that defines a generic way to support multiple implementations of readable data access objects (cRud)
- ADDED IWritableDataAccessObject interface in the Savvyio.Extensions.DependencyInjection.Data namespace that defines a generic way to support multiple implementations of writable data access objects (CrUd)
- ADDED ServiceCollectionExtensions class in the Savvyio.Extensions.DependencyInjection.Data namespace that consist of extension methods for the IServiceCollection interface: AddDataAccessObject
- ADDED IDeletableRepository interface in the Savvyio.Extensions.DependencyInjection.Domain namespace that defines a generic way to support multiple implementations of deletable repositories (cruD)
- ADDED IPersistentRepository interface in the Savvyio.Extensions.DependencyInjection.Domain namespace that defines a generic way to support multiple implementations of persistent repositories (CRUD)
- ADDED IReadableRepository interface in the Savvyio.Extensions.DependencyInjection.Domain namespace that defines a generic way to support multiple implementations of readable repositories (cRud)
- ADDED IRepository interface in the Savvyio.Extensions.DependencyInjection.Domain namespace that defines a generic way to support multiple implementations of persistent data access based on the Repository pattern
- ADDED ISearchableRepository interface in the Savvyio.Extensions.DependencyInjection.Domain namespace that defines a generic way to support multiple implementations of searchable repositories (cRud)
- ADDED IUnitOfWork interface in the Savvyio.Extensions.DependencyInjection.Domain namespace that defines a generic way to support multiple implementations that bundles transactions from multiple IPersistentRepository{TEntity,TKey} calls into a single unit
- ADDED IWritableRepository interface in the Savvyio.Extensions.DependencyInjection.Domain namespace that defines a generic way to support multiple implementations of writable repositories (CrUd)
- ADDED ServiceCollectionExtensions class in the Savvyio.Extensions.DependencyInjection.Domain namespace that consist of extension methods for the IServiceCollection interface: AddRepository