I need help understanding Unity and how IOC works.
I have this in my UnityContainer
var container = new UnityContainer();
// Register types
container.RegisterType<IService, Service>(new HierarchicalLifetimeManager());
config.DependencyResolver = new UnityResolver(container);
Then in my Web API controller, I understand that IService is injected by Unity because it was a registered type.
public class MyController : ApiController
{
private IService _service;
//------- Inject dependency - from Unity 'container.RegisterType'
public MyController(IService service)
{
_service = service;
}
[HttpGet]
public IHttpActionResult Get(int id)
{
var test = _service.GetItemById(id);
return Ok(test);
}
}
My Service Interface
public interface IService
{
Item GetItemById(int id);
}
My Service Implementation has its own constructor that takes an EntityFramework DBContext object. (EF6)
public class Service : IService
{
private MyDbContext db;
// --- how is this happening!?
public IService(MyDbContext context)
{
// Who is calling this constructor and how is 'context' a newed instance of the DBContext?
db = context;
}
public Item GetItemById(int id)
{
// How is this working and db isn't null?
return db.Items.FirstOrDefault(x => x.EntityId == id);
}
}
MyDbContexthas a parameterless constructor. Unity can resolve concrete classes without registration.