I have the following registrations builder.RegisterModule(new AutofacWebTypesModule()); builder.Register<MyType>(ctx =>
Are there any examples of using Autofac in a MVVM application? I\'m not sure how one would control lifetimes and disposal of objects in a MVVM environment.
I\'m new C# and am trying to understand the new security features of .NET-4. To fill in some details, I\'m currently trying to update AutofacContrib.Moq to work with the latest Moq. I had no problems
I was checking out the Log4NetIntegration contribution on the Autofac wiki (http://code.google.com/p/autofac/wiki/Log4NetIntegration) and I\'m having some trouble with the set up using version 2.4.
I am using http://code.google.com/p/autofac/wiki/MultitenantIntegration version 2.4.4 with Autofac 2.4.4 on an ASP.Net MVC 3.0.
In Autofac one can do the following to get all registered servi开发者_如何学运维ces: IEnumerable<MyClass> all = Context.Resolve<IEnumerable<MyClass>>()
Does anyone have any experience integrating autofac and Quartz.Net?If so, where is it best to control lifetime management -- the IJobFactory, within the Execute of the IJob, or through event listeners
Say I have: ProductA ProductB ProductScreen ProductAScreen1 : ProductScreen ProductAScreen2 : ProductScreen
I\'m fairly new to Autofac and I\'m trying to set a public property on a class every time it is initialized.Here is the scenario.I have many classes that inherit from \"Entity\" that follow this basic
newbie here, sorry if this is an obvious question. I\'ve read from this page: http://code.google.com/p/autofac/wiki/NewInV2