Constructor parameters for controllers without a DI container for ASP.NET MVC - Stack Overflow most recent 30 from stackoverflow.com2009-12-06T00:35:05Zhttp://stackoverflow.com/feeds/question/122273http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/122273/constructor-parameters-for-controllers-without-a-di-container-for-asp-net-mvc2Constructor parameters for controllers without a DI container for ASP.NET MVCKorbin2008-09-23T16:54:14Z2008-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#1223612Answer by Ben Scheirman for Constructor parameters for controllers without a DI container for ASP.NET MVCBen Scheirman2008-09-23T17:10:11Z2008-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#1237630Answer by Matt Hinze for Constructor parameters for controllers without a DI container for ASP.NET MVCMatt Hinze2008-09-23T20:47:48Z2008-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-1Answer by Korbin for Constructor parameters for controllers without a DI container for ASP.NET MVCKorbin2008-09-23T21:04:24Z2008-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#1269053Answer by Craig Stuntz for Constructor parameters for controllers without a DI container for ASP.NET MVCCraig Stuntz2008-09-24T12:46:03Z2008-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>