Constructor injection working... Property injection not so much - Stack Overflow most recent 30 from stackoverflow.com2009-12-20T00:22:16Zhttp://stackoverflow.com/feeds/question/1046186http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1046186/constructor-injection-working-property-injection-not-so-much1Constructor injection working... Property injection not so muchJoelFan2009-06-25T20:47:50Z2009-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#17903610Answer by Yacoder for Constructor injection working... Property injection not so muchYacoder2009-11-24T14:17:10Z2009-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<IProjectListView>
{
private ILookupService _lookupService;
[ServiceDependency]
public ILookupService LookupService
{
get { return _lookupService; }
set { _lookupService = value; }
}
}
</code></pre>