AP.IocManager 1.0.0

dotnet add package AP.IocManager --version 1.0.0
NuGet\Install-Package AP.IocManager -Version 1.0.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="AP.IocManager" Version="1.0.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add AP.IocManager --version 1.0.0
#r "nuget: AP.IocManager, 1.0.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 AP.IocManager as a Cake Addin
#addin nuget:?package=AP.IocManager&version=1.0.0

// Install AP.IocManager as a Cake Tool
#tool nuget:?package=AP.IocManager&version=1.0.0

Using

The following is the simplest example of using the IoC container


public interface IAnimal {  }
public class Dog : IAnimal {  }
public class Cow : IAnimal {  }

public interface IAnimalManager {  }
public class AnimalManager : IAnimalManager {
    public AnimalManager(IEnumerable<IAnimal> animals) {  }
}
void  Example ()  {
    // Create a new container
    IBaseContainer container = new BaseContainer();

    // Register type
    container.Register<IAnimal,Dog>();
    container.Register<IAnimal,Cow>();
    container.Register<IAnimalManager,AnimalManager>(ReuseType.Singleton);

    // animals contains two instances, one is Dog and the other is Cow
    var animals = container.ResolveMany<IAnimal>();

    // animalManager's constructor will automatically pass in a list of two instances
    var animalManager = container.Resolve<IAnimalManager>();

    // When the service registered as a singleton (Singleton) resolves again Use the original instance
    // where animalManager == otherAnimalManager
    var otherAnimalManager = container.Resolve<IAnimalManager>();
}

Global IoC container

In the above example, the container was created manually. You do not need to manually create the container when actually developing the program, because there is a global default in IoC. The global IoC container can be used to:

var someService = IoC.Container.Resolve<ISomeService>();

IServiceProvider integration

The current web container implements Microsoft's DI interface and supports the replacement of containers used in Asp.Net Core.

Registration IServiceCollectioncan be used

 public IServiceProvider ConfigureServices(IServiceCollection services)
        {
            services.AddMvc();
            IoC.Container.RegisterSingleton<IDemoService, DemoService>();
            IoC.Container.RegisterFromServiceCollection(services);
            return IoC.Container.AsServiceProvider();
        }

// Get multiple times will return the same instance

    var serviceProvider = IoC.Container.AsServiceProvider();

The Asp.Net Core project created by the current project builder will replace the default container. You do not need to manually write the above code.

Controller Inject Service

public class ValuesController : ControllerBase
    {
        private readonly IDemoService _demoSrv;
        public ValuesController(IDemoService demoSrv)
        {
            this._demoSrv = demoSrv;
        }
    }

Method Inject Service

    [HttpGet]
    public async Task<dynamic> Get()
    {
        //Inject
        var demoSrv =  IoC.Container.Resolve<IDemoService>();
        demoSrv.DoSomeThing();
        //Logic
    }
Product 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. 
.NET Framework net461 is compatible.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

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 1,143 7/3/2018