Simple Injector is an Dependency Injection library for Microsoft .NET, .NET Core, .NET Standard, Windows Phone, Windows Store Apps, and Mono.
I am attempting to do some basic constructor DI with Simple Injector, and it seems that it is unable to …
c# asp.net-web-api dependency-injection simple-injectorI am stuck with a strange situation. I am following Onion Architecture and my architecture is something like this: 1-Core …
c# asp.net angularjs dependency-injection simple-injectorI have the following (simplified) code. public class Controller { private readonly IService _service; public Controller(IService service) { _service = service; } public …
c# mocking nunit moq simple-injectorCurrently I am writing a service using Quartz.NET to schedule the running of it. I was wondering if anyone …
c# .net dependency-injection quartz.net simple-injectorI am using Simple Injector with a ASP.NET MVC project. I added the SimpleInjector.Integration.Web.Mvc nuget package. …
c# asp.net-mvc dependency-injection simple-injectorI am using Simple Injector for test purpose but pretty new on OOP. I am trying to create loosely couple …
c# dependency-injection simple-injectorI'm new to DI and IoC and I'm trying to decide which IoC container to learn. I've seen several performance …
.net dependency-injection inversion-of-control autofac simple-injectorI'm trying to figure out how to use Simple Injector, I've used it around the project with no problems registering …
c# dependency-injection inversion-of-control simple-injector constructor-injectionI thought using my own IoC would be pretty straight forward with SignalR and maybe it is; most likely I'm …
c# signalr simple-injectorIs there a way to register a single interface which is implemented by more than one concrete class using [simple-injector] …
c# c#-4.0 dependency-injection simple-injector