Constructor parameters for controllers without a DI container for ASP.NET MVC - Stack Overflow most recent 30 from stackoverflow.com 2009-12-06T00:35:05Z http://stackoverflow.com/feeds/question/122273 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/122273/constructor-parameters-for-controllers-without-a-di-container-for-asp-net-mvc 2 Constructor parameters for controllers without a DI container for ASP.NET MVC Korbin 2008-09-23T16:54:14Z 2008-09-24T12:46:03Z <p>Does anyone have any code examples on how to create controllers that have parameters other than using a Dependency Injection Container? </p> <p>I see plenty of samples with using containers like StructureMap, but nothing if you wanted to pass in the dependency class yourself.</p> http://stackoverflow.com/questions/122273/constructor-parameters-for-controllers-without-a-di-container-for-asp-net-mvc/122361#122361 2 Answer by Ben Scheirman for Constructor parameters for controllers without a DI container for ASP.NET MVC Ben Scheirman 2008-09-23T17:10:11Z 2008-09-23T17:10:11Z <p>You can use poor-man's dependency injection:</p> <pre><code>public ProductController() : this( new Foo() ) { //the framework calls this } public ProductController(IFoo foo) { _foo = foo; } </code></pre> http://stackoverflow.com/questions/122273/constructor-parameters-for-controllers-without-a-di-container-for-asp-net-mvc/123763#123763 0 Answer by Matt Hinze for Constructor parameters for controllers without a DI container for ASP.NET MVC Matt Hinze 2008-09-23T20:47:48Z 2008-09-23T20:47:48Z <p>You can create an IModelBinder that spins up an instance from a factory - or, yes, the container. =)</p> http://stackoverflow.com/questions/122273/constructor-parameters-for-controllers-without-a-di-container-for-asp-net-mvc/123880#123880 -1 Answer by Korbin for Constructor parameters for controllers without a DI container for ASP.NET MVC Korbin 2008-09-23T21:04:24Z 2008-09-23T21:04:24Z <p>Creative approach LOL. I would suspect that MS will eventually add a easier mechanism for doing this if we didn't want to depend on a third party open source codebase (DI container).</p> http://stackoverflow.com/questions/122273/constructor-parameters-for-controllers-without-a-di-container-for-asp-net-mvc/126905#126905 3 Answer by Craig Stuntz for Constructor parameters for controllers without a DI container for ASP.NET MVC Craig Stuntz 2008-09-24T12:46:03Z 2008-09-24T12:46:03Z <p>One way is to create a ControllerFactory:</p> <pre><code>public class MyControllerFactory : DefaultControllerFactory { public override IController CreateController( RequestContext requestContext, string controllerName) { return [construct your controller here] ; } } </code></pre> <p>Then, in Global.asax.cs:</p> <pre><code> private void Application_Start(object sender, EventArgs e) { RegisterRoutes(RouteTable.Routes); ControllerBuilder.Current.SetControllerFactory( new MyNamespace.MyControllerFactory()); } </code></pre>