0
votes
1answer
31 views
Dependency injection into custom ViewPage generates wierd error
i'm trying to inject stuff into a custom ViewPage (ModelViewPage, from MvcContrib)
public class ValidatedModelViewPage<T> : ModelViewPage<T> where T : class
{
…
0
votes
1answer
60 views
How do I implement a delegate factory?
The documentation for Autofac has an interesting page describing its ability to automatically generate delegate factories. It also strongly suggests that you can get similar result …
1
vote
5answers
320 views
Autofac in web applications, where should I store the container for easy access
I'm still pretty new to using Autofac and one thing I miss in the documentation and examples is how to make it easy to get to the configured container from different places in a we …
0
votes
1answer
80 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 …
1
vote
2answers
46 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:
builder.RegisterGeneric(typeof(PassThrou …
1
vote
3answers
333 views
With Autofac what would be the advantages and disadvantages
I've read about Autofac that it's fast. I've seen the coding involved and it's preatty neat. But I'm not quite sure how to use it. I've used StructureMap, and it has a static Objec …
1
vote
3answers
120 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 => c.Resolve<ISessionFactory …
0
votes
1answer
16 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 jus …
1
vote
1answer
33 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 …
1
vote
1answer
150 views
Autofac, ASP.NET and Microsoft.Practices.ServiceLocation
I've been working thru the details of implementing IoC in my web apps but in a way that leverages Microsoft.Practices.ServiceLocation. I am specifically using Autofac and the asp.n …
1
vote
1answer
39 views
Autofac component registration/resolution bug?
I seem to have a problem - rather unexpected; so I guess I might be doing something silly/wrong.
I register two container scoped services as such:
builder.Register<IServiceInf …
1
vote
2answers
50 views
Does Autofac have a best practice for *optional* Xml configuration?
Background: I wanted to distribute a library to some other developers (something along the lines of an SDK or toolkit abstracting some internal web services). I'm using Autofac i …
1
vote
1answer
69 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 = …
1
vote
1answer
79 views
Autofac Session Scope
I am investigating the use of Autofac in our web application having previously used Castle Windsor in the past.
The thing that I really like with Autofac is being able to express …
1
vote
2answers
285 views
Track down memory leak in WPF
Hi
Context:
We are building a framework for rapid delivery of WPF applications. This framework uses Autofac as an IoC container and also uses regions from Prism v1. We are schedul …
