Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

8
votes
5answers
126 views

IoC with value type and object type dependencies

I am looking for suggestions as to the best way to design objects for IoC Suppose I have an object (Service) that has a dependency to a DataContext which is registered with Ioc. But it also requires ...
8
votes
4answers
1k views

Windsor Container: How to specify a public property should not be filled by the container?

When Instantiating a class, Windsor by default treats all public properties of the class as optional dependencies and tries to satisfy them. In my case, this creates a rather complicated circular ...
5
votes
1answer
2k views

How can I get Castle Windsor to automatically inject a property?

I have a property on my classes for logging service. private ILogger logger = NullLogger.Instance; public ILogger Logger { get { return logger; } set { logger = value; } } And I have this ...
4
votes
1answer
1k views

Ninject 2 Property Injection for ActionFilterAttribute not working

I have a method attribute which expects several properties to be injected by Ninject 2, but userSession and jobRepository are coming up as null: [AttributeUsage(AttributeTargets.Method, AllowMultiple ...
3
votes
3answers
1k views

Programatic property injection with Microsoft Unity

I use contructor injection in my solution, but this one class has a property that i do not want to pass in the constructor where i have the invariant dependencies. Let's say i got an ILogger and it ...
2
votes
1answer
155 views

How to handle circular references with Autofac 2.4.5?

The autofac wiki page about Circular References says to use: cb.Register<DependsByProp>().OnActivated(ActivatedHandler.InjectUnsetProperties); But it looks like ActivatedHandler does not ...
2
votes
1answer
379 views

Windsor Func<T> property injection

Using Windsor 2.5.2, the following works: public class Foo { public IBar Bar { get; set; } } To delay creation of IBar, this also works: public class Foo { public Foo(Func<IBar> ...
2
votes
0answers
691 views

property inject in Autofac

I am compiling: PropertyInject wiki page why this line: builder.RegisterType<A>().InjectProperties(); doesn't compile? how to do property inject in autofac? I am using vs2010, autofac ...
1
vote
1answer
85 views

Castle Windsor automatic property injection of non-public property

I've setup Castle Windsor in my ASP.NET Mvc 3 project and added the following property on HomeController: private IUserService UserService { get; set; } When I try using ...
1
vote
3answers
140 views

UnityContainer.BuildUp() - Can I make it inject new instances into properties only if these are null?

I'm deserializing a class like this one class AClass{ [Dependency] AnotherClass Property{ get; set; } } When I then BuildUp() the object I'd like Unity to create a new instance of ...
1
vote
0answers
225 views

Unity InjectionProperty generates null property

The various posts here do not show why every time I attempt to use the InjectionProperty() construct in Unity 2.0 (April) it never populates the properties in my resolved instance. They are always ...
1
vote
1answer
389 views

How to prevent Castle Windsor from injecting property dependencies?

Is there a way to prevent Castle Windsor from automatically injecting dependencies into properties (besides the [DoNotWire] attribute)?
0
votes
0answers
49 views

Why Should I Use Constructor Injection Over Property Injection [closed]

Possible Duplicate: Dependency injection through constructors or property setters? I'm beginning to feel that I should have all my controllers use property injection instead of constructor ...
0
votes
0answers
94 views

How to use property injection in unity and asp.net mvc3?

I would like to use property injection in an MVC3 application. I have configured Unity 2 as a DI container and everything works just fine by constructor injection but I can't figure out how to use ...
0
votes
1answer
141 views

Accessing a base class property that is defined with Property Injection in the base class's constructor

I've read through everything on the ninject wiki and lots of posts and still don't understand how to set up injection so that I can reference this property. I want to be able to reference the property ...
0
votes
1answer
152 views

How can StructureMap be used to create setter dependencies of objects that have primitive constructor argumeents?

I have an object "TestProperty" which implements "ITestProperty". "TestProperty" takes a string constructor argument. This is configured in StructureMap using something along the lines CtorDependency ...