Constructor injection working... Property injection not so much - Stack Overflow most recent 30 from stackoverflow.com 2009-12-20T00:22:16Z http://stackoverflow.com/feeds/question/1046186 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1046186/constructor-injection-working-property-injection-not-so-much 1 Constructor injection working... Property injection not so much JoelFan 2009-06-25T20:47:50Z 2009-11-24T14:17:10Z <p>I am using Composite Application Block. I have a class that uses constructor injection (using the [ServiceDependency] attribute on the constructor parameter) and it's working. But when I try to switch to using property injection (with the [ServiceDependency] attribute on the property), the injection is not happening (the property stays null).</p> <p>I made sure that the property has the same type that the old constructor parameter had, and it's public.</p> <p><strong>Edit:</strong> This is C# / .NET</p> http://stackoverflow.com/questions/1046186/constructor-injection-working-property-injection-not-so-much/1790361#1790361 0 Answer by Yacoder for Constructor injection working... Property injection not so much Yacoder 2009-11-24T14:17:10Z 2009-11-24T14:17:10Z <p>It works for me, hmm... Should look like <a href="http://weblogs.asp.net/bsimser/archive/2007/01/09/using-dependency-injection-with-cab.aspx" rel="nofollow">here</a></p> <pre><code>public class ProjectListViewPresenter : Presenter&lt;IProjectListView&gt; { private ILookupService _lookupService; [ServiceDependency] public ILookupService LookupService { get { return _lookupService; } set { _lookupService = value; } } } </code></pre>