Autofac (http://autofac.org) is an inversion of control (IoC) container for Microsoft .NET. It manages the dependencies between classes so that applications stay easy to change as they grow in size and complexity. This is achieved by treating regular .NET classes as components.

learn more… | top users | synonyms

32
votes
6answers
4k views

Autofac or Ninject? - which should I go for?

I'm hitting paralysis by analysis I think... Which should I go for for my first IOC container: Autofac or Ninject? (Just want an open source, nice and simple, IOC container)
20
votes
1answer
6k views

How to configure fluent nHibernate with MySQL

I'm trying to configure nHibernate to use a MySql database. I found examples for mssql and sqlite but none for mysql. So, how do I change this so it uses mysql: Fluently.Configure().Database( ...
16
votes
7answers
4k views

Is Dependency Injection possible with a WPF appliction?

I want to start using dependency injection in my WPF application, largely for better unit testability. My app is mostly constructed along the M-V-VM pattern. I'm looking at autofac for my IoC ...
13
votes
2answers
875 views

Does Ninject support Func (auto generated factory)?

Autofac automatically generates factories for Func<T>; I can even pass parameters. public class MyClass { public MyClass(Func<A> a, Func<int, B> b) { var _a = a(); ...
10
votes
2answers
283 views

Autofac: Hiding multiple contravariant implementations behind one composite

I was triggered by this SO question about (.NET 4.0) covariance and contravariance support for Autofac, and now I'm trying to achieve something similar, but without any luck. What I am trying to ...
9
votes
3answers
264 views

Customizing Autofac's component resolution / Issue with generic co-/contravariance

First, sorry for the vague question title. I couldn't come up with a more precise one. Given these types: { TCommand : ICommand } ...
8
votes
2answers
231 views

Using Autofac as a service locator

I'm using Autofac to handle dependency injection in my application. However, I have one component that does some reflection magic at runtime and I don't know at compile-time what dependencies it will ...
8
votes
4answers
3k views

How to set ViewBag properties for all Views without using a base class for Controllers?

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. This allowed my to use ...
8
votes
1answer
2k views

How to use Autofac in a 3 layered web application (ASP.NET MVC)?

The examples I can find use a two layer architecture, where the controllers directly use the repository classes in the data access layer. See here or here. Where would you register components from ...
7
votes
4answers
1k views

Using Autofac for DI into WCF service hosted in ASP.NET application

I'm having trouble injecting services dependencies into my WCF service using Autofac 1.4.5. I've read and followed the Autofac wiki page on WcfIntegration but my debugging shows me that my WCF service ...
7
votes
3answers
1k views

Autofac: How to limit the lifetime of an IDisposable object without passing around the IoC container

I'm currently learning how to use Autofac, and I'm stuck with disposing IDisposable objects deterministically. Let me first present the situation before I'll state my problem. Starting position: ...
7
votes
1answer
1k views

Resolving Generic Interface with Autofac

Given the following code, how do I resolve the right SomeInstance in autofac? public class BaseClass {} public class SubClass1 : BaseClass {} public class SubClass2 : BaseClass {} public interface ...
6
votes
1answer
128 views

Autofac equivalent of Ninject's WhenInjectedInto()

So we're working on converting some projects at work from Ninject to Autofac, and we've stumbled on something really neat within Ninject that we can't figure out how to do in Autofac. In our ...
6
votes
7answers
278 views

How can one use an existing instance to select a type to create in an IoC container

this is probably just a newbie question, but I have the following: public class FooSettings {} public class BarSettings {} public class DohSettings {} // There might be many more settings types... ...
6
votes
2answers
1k views

Managing NHibernate ISession with Autofac

Does anyone have any tips or best practices regarding how Autofac can help manage the NHibernate ISession Instance (in the case of an ASP.NET MVC application)?
6
votes
1answer
261 views

Registering Collections in Autofac 2.1.10 RC

I am upgrading code from Autofac 1.4 to 2.1.10 Release Candidate. My module previously performed registration like this: builder.RegisterCollection<IExceptionHandler>() ...
5
votes
1answer
85 views

In which assembly should an customized Autofac module reside?

I have a c# application set up like so: [Assembly-ConsoleApp] --References--> [Assembly-Domain] / [Assembly-FileAccess] --References-->---------/ ...
5
votes
2answers
344 views

Constructor injection into a base class using autofac

I have an abstract base controller which has a constructor I hoped would be populated by autofac when the controllers were built. public abstract class BaseController : Controller { protected ...
5
votes
2answers
235 views

Customize c# WinForm application for multiple customers

Think at this scenario: I have a c# windows form application. This application was the same for all my customers. Now one of them needs to modify a form adding new textbox and new logic. I obviously ...
5
votes
2answers
521 views

ASP.NET MVC 3, RavenDB, & Autofac Issue Plus 2 Other Autofac Questions

NOTE: There are 3 questions in here and I did not make separate questions since they are all somewhat related to the same code. I have the following code that registers the connection to my RavenDB ...
5
votes
3answers
289 views

Is it bad design to reference Autofac in my projects just for Owned<T>?

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 ...
5
votes
1answer
744 views

.NET 4, AllowPartiallyTrustedCallers attribute, and security markings like SecurityCritical

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 ...
5
votes
1answer
375 views

Autofac and Quartz.Net Integration

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 ...
5
votes
3answers
223 views

Reinject dependencies of a freshly deserialized object

If a program has literally just deserialized an object (doesn't really matter how, but just say BinaryFormatter was used). What is a good design to use for re-injecting the dependencies of this ...
5
votes
3answers
1k views

NHibernate with Autofac within ASP.NET (MVC): ITransaction

What is the best approach to managing NHibernate transaction using Autofac within web application? My approach to session is builder.Register(c => ...
5
votes
2answers
596 views

AutoFac Autowiring Conventions

StructureMap has the ability to apply conventions when scanning. Thus IFoo => Foo, without explicit registration. Is something simular available in AutoFac? Looked around and just can't find ...
5
votes
2answers
776 views

Autofac with Open Generics and Type Specified at Runtime

The documentation states that Autofac supports open generics and I am able to register and resolve in a basic case like so: Registration: ...
5
votes
2answers
975 views

Automatic factory with Common.Logging and Autofac?

I would like to inject ILog into my classes, not an ILoggerFactoryAdapter, but the ILoggerFactoryAdapter needs the name of the calling class (the class that wants to log something, so i can be ...
5
votes
2answers
838 views

Can Autofac do automatic self-binding?

I know some DI frameworks support this (e.g. Ninject), but I specifically want to know if it's possible with Autofac. I want to be able to ask an Autofac container for a concrete class, and get back ...
4
votes
2answers
84 views

NInject equivalent of Autofac's AsClosedTypesOf

What is the NInject equivalent of the following code that uses Autofac: var builder = new ContainerBuilder(); System.Reflection.Assembly assembly = ...; ...
4
votes
2answers
44 views

AutoFac: What does PropertyWiringFlags.AllowCircularDependencies do?

I have part of a code that has dependencies that look as follows: public class MyPage : Page //ASPX WebForms page { public IPersonBl PersonBl { get; set; } } public class PersonBl : IPersonBl { ...
4
votes
2answers
143 views

Service Locator easier to use than dependency Injection?

The application I am working on is relying on Autofac as DI container and one of the reasons that made me decide to use it, among others, was the delegate factory feature (see here) This works fine ...
4
votes
1answer
72 views

Can components be temporarily registered in an Autofac container?

I'm building a plugin for a 3rd party application and my plugin uses Autofac to wire up various components. The container is built at application startup, but the host application invokes my commands ...
4
votes
2answers
320 views

Autofac property injection

I am in the process of changing my Asp.Net MVC3 project to use Autofac for service injection into my controllers. So far this has been pretty straightforward. My services all have a Telerik ...
4
votes
2answers
98 views

Autofac: Resolving variant types with both in and out type arguments

This question is a follow up of my previous question: Autofac: Hiding multiple contravariant implementations behind one composite. I'm trying to find the boundries of what we can do with Autofac's ...
4
votes
3answers
184 views

OOD using IoC containers - how to construct dependant objects?

I am trying to get better with IoC,DI and OOD for better testability and looser coupling. So when we design classes with heavy use of IoC and DI we can endup with classes with multiple dependencies ...
4
votes
1answer
215 views

How do I mock the autofac's autogenerated delegate factories?

I'm struggling to get a unit test working for one of my classes. I want to inject my factory instead of the autogenerated factory the autofac resolves to. How do I register my own function as the ...
4
votes
2answers
323 views

Autofac. How to resolve interface based on service where it's passed to

I have an interface. public interface ISomeInterface {...} and two implementations (SomeImpl1 and SomeImpl2): public class SomeImpl1 : ISomeInterface {...} public class SomeImpl2 : ISomeInterface ...
4
votes
1answer
201 views

AutoFac IoC, DDD, and inter-Repository Dependencies

I have two POCO types, A and B. I have a repository for each, Rep<A> and Rep<B>, both of which implement IRep<A> and IRep<B> served up by an IoC container (AutoFac in this case). There ...
4
votes
1answer
217 views

Autofac lazy TypedParameter

In Autofac is it possible to make TypedParameter lazy? Even more, I need access to container when injecting parameter. Code could look like this: builder.RegisterType<RootService>() ...
4
votes
1answer
835 views

DI/IoC Container Performance Benchmark Comparison?

I've found some 2008 benchmark results for testing the performance of several of the top .NET DI/IoC containers here. But I haven't been able to find any updated results. Are there any benchmarks ...
4
votes
1answer
178 views

Autofac, adding services after container has been built

Is it possible to register a service at run-time, meaning after the ContainerBuilder has been built and the Container has been created (and ContainerBuilder disposed of)?
4
votes
1answer
237 views

Autofac. How to use custom method(property) to resolve some interface?

I have the following interfaces : public interface IConfigurationProvider<TSettings> where TSettings : ISettings, new() { TSettings Settings { get; } } public interface ISettings { } ...
4
votes
1answer
291 views

Is it possible to get container type in AutoFac

For example, I have registered class C1 with one parameter in constructor of type System.Type. I have another class (C2) with injected parameter of type C1. And I want receive typeof(C2) automatically ...
4
votes
2answers
1k views

ASP.NET MVC 3, Action Filters, and Autofac Dependency Injection

On ASP.NET MVC 2 I have an ActionFilterAttribute called [Transaction] that starts an NHibernate transaction before executing the action and commits or rolls it back afterward, depending on whether or ...
4
votes
1answer
559 views

Managing multiple databases with NHibernate and Autofac

I thought I'd get this question out there while I noodled on a solution on my own. After having built out the bulk of an application, I have a last minute requirement to support reading/writing to an ...
4
votes
2answers
341 views

A .NET Unit Test without a parameterless constructor, to facilitate dependency injection

I'm trying to have the unit tests not rely on calling container.Resolve<T>() for their dependencies. I'm currently using AutoFac 2.2.4, and tried xUnit.NET and NUnit, but both have this issue: ...
4
votes
2answers
285 views

Good practices for handling multiple config files with DI frameworks

In my current solution I have 18 projects and most of them have their own configuration files (app.config or web.config). Each project uses single shared BLL assembly. I'm using Autofac to handle ...
4
votes
1answer
298 views

Manage autofac container setup

One of my team members decided to use autofac on one of our services and because we wanted to try it out we stuck with it. Now some time has passed and the container setup method has grown! It so big ...
4
votes
2answers
2k views

Autofac: Resolve all instances of a Type

Given the following registrations builder.Register<A>().As<I>(); builder.Register<B>().As<I>(); builder.Register<C>().As<I>(); var container = builder.Build(); ...

1 2 3 4 5 8