Potrzebuję pomocy w zrozumieniu Jedności i pracy MKOl.Web API z Unity IOC - Jak rozwiązano moją zależność DBContext Dependecy?
mam to w moim UnityContainer
var container = new UnityContainer();
// Register types
container.RegisterType<IService, Service>(new HierarchicalLifetimeManager());
config.DependencyResolver = new UnityResolver(container);
Wtedy w moim kontrolera API Web, rozumiem, że IService jest wstrzykiwany przez Unity ponieważ był zarejestrowanym typu.
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);
}
}
Moja Interfejs usługi
public interface IService
{
Item GetItemById(int id);
}
Moje Wykonanie usługi posiada własny konstruktor, że trwa obiekt EntityFramework DBContext. (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);
}
}
Najprawdopodobniej 'MyDbContext' ma konstruktor bez parametrów. Jedność może rozwiązać konkretne klasy bez rejestracji. –