vote up 4 vote down star
3

I am trying to work out a way to use Dependency Injection with ASP.NET controls.

I have got lots of controls that create repositories directly, and use those to access and bind to data etc.

I am looking for a pattern where I can pass repositories to the controls externally (IoC), so my controls remain unaware of how repositories are constructed and where they come from etc.

I would prefer not to have a dependency on the IoC container from my controls, therefore I just want to be able to construct the controls with constructor or property injection.

(And just to complicate things, these controls are being constructed and placed on the page by a CMS at runtime!)

Any thoughts?

flag

6% accept rate

2 Answers

vote up 2 vote down

The best way is to have a base class for the controls like:

public class PartialView : UserControl
{
    protected override void OnInit(System.EventArgs e)
    {
        ObjectFactory.BuildUp(this);
        base.OnInit(e);
    }
}

That will inject any control that inherits from that base class (uses structuremap). Combining that with a property based config, you will be able to have controls like:

public partial class AdminHeader : PartialView
{
   IMyRepository Repository{get;set;}
}

Update 1: If you can't have the controls inherit, perhaps the CMS has a hook right after creating the controls, in there you can call the BuildUp. Also if the CMS allows you to hook something to fetch the instance you could use constructor based injection, but I prefer BuildUp on this specific scenario as asp.net doesn't have a hook for this.

link|flag
Thanks for the response. The perfectionist side of me would like the controls not to have a dependency on the ObjectFactory framework i.e. pure dependency injection. Obviously this implies something external, creating the controls. – Schneider Feb 26 at 9:07
Re: Update 1. I will have a poke around in the CMS and see if I can find anything. I guess one problem with constructor based injection in ASP.NET is that the controls become 'undesignable' at that point. Unless the designer know how to build them up. – Schneider Feb 26 at 9:09
vote up 0 vote down

You could also create some singleton instances in the Application_Start global.asax event and have them available as public static readonly properties.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.