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

1
vote
1answer
20 views

Autofac MultiTenant with ASP.NET MVC3

Which version of Autofac supports MultiTenant for ASP.NET MVC 3? I could find this for ASP.NET MVC 4
0
votes
0answers
12 views

Autofac Injection by Caller Type

Is it possible to inject type to using autofac by the caller type? I have 2 objects that holds the same member type. What I want is when Container1 is called Autofac resolve IRegisteredType as ...
0
votes
1answer
31 views

Inject Specific Type With Autofac

I want to inject specific type when some conditions are met. For example, i have got an interface like below. public interface IMyInterface{ } And also two classes that implement this interface ...
0
votes
1answer
15 views

Autofac configuration problems trying to integrate Quartz

I am working with the Owned type as found here: Strong reference of Autofac 2 I'm also using Quartz scheduler, MSMQ, and EF. My config looks as follows. I've clearly got something wrong as the ...
3
votes
1answer
45 views

What is the difference between these two ways of registering an instance in autofac

What is the difference in autofac between these two registrations: builder.Register(c => Instance).As<ISomeInterface>(); and ...
0
votes
0answers
33 views

Autofac register derived types for an interface

I have an interface IBase with many derived interfaces IDerived1, IDerived2. I would like to register implementations for the derived interfaces using Autofac. Given any derived interface, I can ...
0
votes
2answers
19 views

Component registration override

We produce a toolkit that can be supported by various IoC containers, the toolkit is fully IoC-agnostic and we provide basic support for different containers. We are currently working to support ...
1
vote
0answers
21 views

The type 'Autofac.Builder.ReflectionActivatorData' is defined in an assembly that is not referenced

I've got a solution containing multiple C# projects, some of which are using Autofac. If I add a reference to an Autofac-using project to an existing project, I get the following error message when ...
0
votes
0answers
38 views

Is there a way to fine tune Autofac MVC3 Action Injection?

So I got Action Injection with Autofac implemented in large MVC solution, or so I thought. Turned out there were cases were it did not work properly. In one of the views we were posting back ...
0
votes
3answers
59 views

How to use dependency injection in ashx (Autofac, MVC4)

public class AutoCompleteCity : IHttpHandler { public IAutoCompleteRepository AutoCompleteRepository { get; set; } public void ProcessRequest(HttpContext context) { } } public static ...
0
votes
1answer
56 views

How do you inject with parameters using AutoFac?

I'm trying to figure out the syntax to inject OrmLiteConnectionFactory using AutoFac. This is a working example using Funq, another DI framework. container.Register<IDbConnectionFactory>(c ...
0
votes
2answers
73 views

Using Autofac with AJAX-enabled WCF Service

I am desperately trying to get this to work. I have used WCF services to do AJAX with JQuery before without any hustle. Now I am using Autofac for DI, and so far it is going quiet good, until I want ...
1
vote
1answer
41 views

Possible to register NullObject implementation as a fallback for a generic interface?

We use a lot of Generics in our code. For example ICommandHandler<T> where T is ICommand, ICommandValidator<T> etc etc Not everything has a ICommandValidator implementation. I was looking ...
0
votes
2answers
39 views

Resolving context driven parameters with Autofac

I am trying to find a better way to resolve context-driven parameters using Autofac. Consider the following code : ...
3
votes
0answers
54 views

Check if component is resolved in outermost LifetimeScope

I am reworking an existing codebase to make better use of the autofac container. The situation I'm having is that a lot of things used to resolve their components straight from the container in a ...
0
votes
1answer
26 views

Intercept ALL services

We have small lifetime scopes in our applications. It would be interesting to be able to intercept all services registered in autofac. By doing so we can see exactly which path the code takes for ...
-1
votes
0answers
30 views

Validate registered services

Is it possible to make sure that everything in Autofac has been registered? i.e. go through all registered classes and make sure that all dependencies can be resolved?
1
vote
1answer
36 views

Webapi DefaultHttpControllerSelector does not properly resolve my controller

I have an WebApi application that contains some controllers (they are registered using the extension method RegisterApiControllers). This application references another assembly that contains other ...
2
votes
1answer
36 views

Autofac 2.6 and Orchard 1.6 - Action Filter construction injection

To begin with two things. I am trying to achieve an action filter that logs when and action begins and when it end I am well aware of the .AsActionFilter() method in Autofac 3.0 BUT... The project ...
0
votes
0answers
28 views

singleton autofac property is null after binding

i have question regarding autofac. i am having a bootstrap class where i am registering my viewmodel as singleton via registertyp().singleinstance(). mytype.singletong.listproperty() == populatedata; ...
1
vote
1answer
47 views

Autofac, how to intercept the service with an instance of a Aspect but not with the Type of Aspect?

I have an Autofac as an IoC container. I want to register Aspect for the some types. I can do it like this: ...
2
votes
1answer
51 views

Resolving IDbSet<T> from AutoFac

I would like to implement generic repository pattern with IDbSet<> interface of Entity Framework. When i ask IDbSet<T> from Autofac, It should resolve IDbContext then call its ...
2
votes
1answer
43 views

Using Autofac's ReplaceInstance with interface types

According to the documentation, I can use the activating event to "Switch the instance for another or wrap it in a proxy," but I haven't been able to get it to work. Here's what I've tried: ...
0
votes
1answer
54 views

ServiceStack - How do I use existing IOC?

We have an existing MVC3 project and use Autofac for DI. To provide RESTful services, we are intending to use ServiceStack. How do we make ServiceStack use existing Bootstrapper.cs that initialises ...
0
votes
4answers
93 views

Autofac: how to inject properties with dynamic values?

By Autofac, it's easy to inject a static value to the CurrentDate property to instances of classes in a given assembly: builder.RegisterApiControllers(asm).WithProperty("CurrentDate", new ...
1
vote
1answer
76 views

Resolving dependency based on custom criteria

My app relies on multiple event bus objects which are basic publish/subscribe notification model (http://caliburn.codeplex.com/wikipage?title=The%20Event%20Aggregator). What I want to do is share ...
0
votes
0answers
34 views

Get registered types that implement some interface

I'm using Autofac 3.0 and wondering is it possible to get a list of types registered in the container that implements a specified interface. Basically I need to get an IEnumerable where ...
2
votes
1answer
39 views

Register generic factory

I have a ICommand and ICommandHandler<TCommand> interfaces and need to inject factory: public class CommandProcessor { private readonly Func<Type, ICommandHandler<ICommand>> ...
3
votes
0answers
56 views

Should I inject ServiceStack's ICacheManager?

I'm looking to implement a caching tier in our application and accidentally came across ServiceStack's ICacheManager. ICacheManager.Resolve looks as though it's exactly what I'm after (try and get, ...
2
votes
1answer
88 views

Converting Autofac to Simple Injector

In Autofac I can do the following builder .RegisterType<Services.GreetService>() .As<ServiceBase>() .InstancePerLifetimeScope(); Where GreetService inherits from ServiceBase I ...
0
votes
1answer
64 views

How to register types in IOC container, but in a container agnostic way?

*I have an application which uses an IOC container (Autofac, but could be any). I also have modules which are developed externally. Each module needs to specify its own setup of the DI container, ...
0
votes
0answers
53 views

Autofac: long-lived objects requiring short-lived objects during single method calls

I have a class X that I register in Autofac as single-instance because it's rather costly to create. X has a method DoSomething that performs some action. However, to do its task in DoSomething, X ...
0
votes
0answers
25 views

Autocreate named instances with autofac

I have XAML solution where I register viewmodels through AutoFacContainer. Now I have a use case where different data is shown using same Page and ViewModel. I'd like to resolve them by name or key to ...
2
votes
1answer
197 views

None of the constructors found with 'Autofac.Core.Activators.Reflection.DefaultConstructorFinder'

When I try to set a PARAMETER using the Xml Configuration I get the following error: None of the constructors found with 'Autofac.Core.Activators.Reflection.DefaultConstructorFinder' on type ...
0
votes
1answer
50 views

Autofac self register TypedNamedAndKeyedServices

I have a simple system that displays different screens (WPF) depending on the type of Molecule the user selects. To accomplish it I am using Caliburn.Micro together with Autofac as Ioc Container. A ...
0
votes
1answer
66 views

Resolving dynamic object creation (inside another dynamically created object) with autofac

i'm trying to create a module (that will be referenced in a simple ASP site, using the Autofac Web Form Integration) that has a particular requirement. It should return a string created using a ...
0
votes
1answer
72 views

User.Identity.Name is empty when using autofac AutofacWebTypesModule

I am using ASP.NET MVC 4 and Autofac. I have a WebWorkContext class that I inject in various places in my solution to get the current employee's details. Here is my Autofac registrations in my ...
5
votes
1answer
129 views

Multiple implementations for one interface with DI

Right now I'm trying to teach myself the Dependency Injection pattern with the IOC-container from Autofac. I've come up with a very simple example, which is presented below. Although the example is ...
0
votes
0answers
75 views

Autofac is not disposing of objects properly

I am convinced I haven't setup autofac correctly. My applications memory consumption is hovering around 1.5gb with barely any users. I am so lost as to where the memory usage is coming from. So I will ...
0
votes
1answer
48 views

How does dependency injection know which type of mapping to use when injecting an interface

I've been reading up on dependencey injection and I read a lot on how an interface is inejected through a constructor. How does it know what type of mapping to use for the interface? For example, if ...
1
vote
1answer
109 views

Autofac & WinForms Integration Issue

I have a very simple WinForms POC utilizing Autofac and the MVP pattern. In this POC, I am opening a child form from the parent form via Autofac's Resolve method. What I'm having issues with is how ...
0
votes
0answers
54 views

Autofac property injection with ValidationAttribute

I've got a ValidationAttribute that looks like this: public class RegistrationUniqueNameAttribute : ValidationAttribute { public IRepository<User> UserRepository { get; set; } public ...
1
vote
1answer
642 views

Consuming WebApi from Mvc Controllers - HttpClient or reference API assembly?

I have a solution with an MVC application and a Web API. They're in separate projects and domains (using CORS). I built it as a Web API to have the flexibility for adding consumers but currently my ...
1
vote
1answer
57 views

Registering async factory in Autofac

I have a Wallet class that I get from a repository. I'm trying to properly register both in Autofac so classes using the wallet could have a proper instance injected. The problem is that the ...
0
votes
2answers
77 views

AutoFac WCF proxy with changing ClientCredentials

I'm writing a WCF service and am using the AutoFac WCF integration for DI. I have a slightly weird situation where I have a proxy to another service that requires credentials. The credentials will ...
5
votes
2answers
115 views

Autofac resolving a singleton creates a bottleneck

I'm using Autofac in an asp.net MVC app and came across a problem with locking. Anytime a service depends on a singleton, that service is resolved from the root lifetime scope. This is because ...
0
votes
1answer
85 views

Loading all referenced assemblies .NET even if not used explicitly in code

We have a windows service which is using Autofac, when we try to load the referenced assemblies not all are listed as some contain objects we aren't using anywhere in the application but interface ...
0
votes
0answers
100 views

.Net Web API and Autofac - HTTPRequestMessage VS HTTPRequestBase

I am using Autofac for DI with a .Net Web API project. The dependencies to API controller are injected using Autofac. One of these dependencies needs to look at request headers. So I registered ...
0
votes
2answers
58 views

Override autofac registration with plugin

I have an IFoo service implemented by DefaultFoo, and I've registered it as such in my autofac container. Now I would like to allow for an alternative implementation of IFoo to be implemented in a ...
0
votes
1answer
162 views

How to correctly dispose objects registered with Autofac

I've implemented Unit of Work/Repository pattern, as described here, but I'm also using autofac and constructor injection, so I registered UnitOfWork and DbContext (PsyProfContext) class like this: ...

1 2 3 4 5 17