dependency_injection_build 1.0.0.1
See the version list below for details.
dotnet add package dependency_injection_build --version 1.0.0.1
NuGet\Install-Package dependency_injection_build -Version 1.0.0.1
<PackageReference Include="dependency_injection_build" Version="1.0.0.1" />
paket add dependency_injection_build --version 1.0.0.1
#r "nuget: dependency_injection_build, 1.0.0.1"
// Install dependency_injection_build as a Cake Addin #addin nuget:?package=dependency_injection_build&version=1.0.0.1 // Install dependency_injection_build as a Cake Tool #tool nuget:?package=dependency_injection_build&version=1.0.0.1
Welcome to the build wiki!
.NET Core 2.1 Dependency Injection framework
v1.0.0.1
Major improvements
- Added support for default parameterless constructor with parameters injection using attributes
Examples
Default constructor with parameters injection
Usage:
var commonPersonContainer = new Container();
commonPersonContainer.RegisterType<SqlDataRepository>();
commonPersonContainer.RegisterType<ServiceDataRepository>();
var srv = (ServiceDataRepository)commonPersonContainer.CreateInstance("UnitTests.TestSet15.ServiceDataRepository(UnitTests.TestSet15.IPersonRepository)");
Definition:
public class SqlDataRepository : IPersonRepository
{
public int PersonId { get; }
public SqlDataRepository(int personId)
{
PersonId = personId;
}
public Person GetPerson(int personId)
{
// get the data from SQL DB and return Person instance.
return new Person(this);
}
}
public class ServiceDataRepository : IPersonRepository
{
public ServiceDataRepository([Injection(typeof(SqlDataRepository), 2018)]IPersonRepository repository)
{
Repository = repository;
}
public IPersonRepository Repository { get; }
public Person GetPerson(int personId)
{
// get the data from Web service and return Person instance.
return new Person(this);
}
}
Description
- Interface first-class support (instantiation, strong typing, external assembly)
- Circular references detection in type registration
- Automatic type resolution for all supported types
- Pure type instantiation (weak coupling)
- Declarative metadata attribute driven initialization
- Lazy type resolution and initialization (supports pure dependency injection decoupling anti-pattern)
- Singleton initialization support
- Automated and manual type registration
- Types aliases (user-friendly type identification)
- External assembly types support
Latest changes (experimental tag, 1.0.0.0)
- Elimination of overlapped attribute specificators (removes violation of the SOLID principles)
- Circular references detection phase moved to type registration rather instantiation
- Automatic type resolution for all supported types if used in type instantiation
- Pure type instantiation as descriptive string with particular constructor and passing corresponding parameters
Features
- Declarative metadata attribute driven initialization
- Lazy type resolution and initialization (supports pure dependency decoupling anti-pattern)
- Circular references detection
- Singleton initialization
- Automated and manual type registration
- Type aliases
- External assembly types
Goal
The goal of development of this framework is to build automation of complex types initialization. Build can use declarative approach to define dependencies between types and their requirements. Constructor injection uses type resolution to resolve devendencies
Examples
Create instance with parameters
Usage:
var commonPersonContainer = new Container();
commonPersonContainer.RegisterType<SqlDataRepository>();
commonPersonContainer.RegisterType<ServiceDataRepository>();
var sql = new SqlDataRepository();
var srv1 = (ServiceDataRepository)commonPersonContainer.CreateInstance(
"UnitTests.TestSet14.ServiceDataRepository(UnitTests.TestSet14.SqlDataRepository)", sql);
Load simple types (not attributes specified)
Usage:
IContainer commonPersonContainer = new Container();
commonPersonContainer.RegisterType<SqlDataRepository>();
commonPersonContainer.RegisterType<ServiceDataRepository>();
var srv1 = commonPersonContainer.CreateInstance<ServiceDataRepository>();
Load of external assembly type
Classes
Definition:
public interface IPersonRepository
{
Person GetPerson(int personId);
}
public class Person
{
readonly IPersonRepository _personRepository;
public Person(IPersonRepository personRepository)
{
_personRepository = personRepository;
}
}
public class SqlDataRepository : IPersonRepository
{
public SqlDataRepository()
{
}
public Person GetPerson(int personId)
{
// get the data from SQL DB and return Person instance.
return new Person(this);
}
}
public class ServiceDataRepository : IPersonRepository
{
public ServiceDataRepository(SqlDataRepository repository)
{
Repository = repository;
}
public IPersonRepository Repository { get; }
public Person GetPerson(int personId)
{
// get the data from Web service and return Person instance.
return new Person(this);
}
}
Links
Dependency injection in ASP.NET Core
Inversion of Control Containers and the Dependency Injection pattern
Donate
Please, feel free to donate me 5$ to expand project development (wiki, samples, etc.)
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. 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. |
.NET Core | netcoreapp2.0 is compatible. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
-
.NETCoreApp 2.0
- No dependencies.
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
1.0.0.31 | 539 | 7/31/2020 |
1.0.0.28 | 435 | 7/31/2020 |
1.0.0.27 | 594 | 3/2/2019 |
1.0.0.19 | 857 | 7/15/2018 |
1.0.0.18 | 927 | 7/11/2018 |
1.0.0.17 | 881 | 7/11/2018 |
1.0.0.16 | 774 | 7/2/2018 |
1.0.0.15 | 906 | 6/23/2018 |
1.0.0.14 | 913 | 6/21/2018 |
1.0.0.13 | 894 | 6/18/2018 |
1.0.0.12 | 889 | 6/17/2018 |
1.0.0.11 | 880 | 6/16/2018 |
1.0.0.10 | 922 | 6/16/2018 |
1.0.0.9 | 878 | 6/16/2018 |
1.0.0.8 | 877 | 6/16/2018 |
1.0.0.7 | 946 | 6/1/2018 |
1.0.0.6 | 916 | 6/1/2018 |
1.0.0.5 | 921 | 5/24/2018 |
1.0.0.4 | 931 | 5/13/2018 |
1.0.0.3 | 897 | 5/12/2018 |
1.0.0.2 | 927 | 5/12/2018 |
1.0.0.1 | 976 | 4/29/2018 |
1.0.0 | 949 | 4/17/2018 |
Features:
- default parameterless constructor with parameters injection