In an ASP.net application, is there a way to delay the discovery of DI information? I'm using manual discovery by specifying an assembly name in my web.config.
For example, I want to do work with entity classes in an application_onstart event, however I don't want any of the authorization logic to apply yet.
What event triggers the DI information to be applied?
Thanks!