I have POCO objects that reference each other by findi开发者_StackOverflow中文版ng ID\'s in repositories. I don\'t want the objects to have strong references between each other because the repositorie
I have a bunch of TaskParametes class instances registered in container, like: builder.Register(c => [some type instantiation]
I got an assembly with many concrete types that implement IHandler<TCommand>, such as the following:
Integration into Prism was talked about in the 2.1.x time frame, 开发者_如何学Cwe are @ 2.4.x, Prism 4 is out now and the RIStockTrader Example in /contrib is just a default XAML project.
I have a WCF service that works when accessed by a simple MVC application. When I try to make call on the same endpoint from a different MVC app that\'s wired up with Autofac I get a binding/开发者_J
Does IsClosingTypeOf still exist? What is the equivalent method in TypeExtensions? I guess I\'ll have to bite the bullet and install hg and download the code. I\'ve been trying to avoid doing this fo
I\'m trying to introduce domain events into a project. The concept is described in Udi Dahan\'s post - http://www.udidahan.com/2009/06/14/domain-events-salvation/
Per my previous question, I implemented a model binder that maps /api/v1/widgets/1,2,3 to // WidgetsController.cs:
I\'ve recently become a heavy user of Autofac\'s OwnedInstances feature.For example, I use it to provide a factory for creating a Unit of Work for my database, which means my classes which depend on t
In the past I\'ve stuck common properties, such as the current user, onto ViewData/ViewBag in a global fashion by having all Controllers inherit from a common base controller.