the question is pretty straightforward.i want to access overall AutoFac container so that i can register my dependency in it.
AutoFac
remark:>
You can add an Autofac module directly to your Orchard module and Orchard will pick it up. ex...
public class MyModule : Module { protected override void Load(ContainerBuilder builder){ builder.RegisterType().As().InstancePerDependency(); } }