Resolving Dependencies in ASP.NET MVC 5 with StructureMap

Date Published: 25 June 2014

Resolving Dependencies in ASP.NET MVC 5 with StructureMap

In a previous post I showed how to use StructureMap with ASP.NET MVC 3. It’s been a couple of years, so I figured it was time to update that article with the steps for getting StructureMap working in ASP.NET MVC 5. If you’re interested in learning more about how to develop applications in a loosely coupled fashion, I highly recommend my course on SOLID Principles of Object Oriented Design to learn more (in particular, the Dependency Inversion Principle).

StructureMap is my preferred IOC container / dependency injection tool for .NET applications. It’s free, performs very well, and has a number of very useful features that make it very productive to work with. One example of a great use of StructureMap can be found in my CachedRepository article.

Assuming you’re starting with a new ASP.NET MVC 5 application, the easiest way to get StructureMap is using Nuget. You can open the Package Manager Console and run this command:

install-package StructureMap.MVC5

which should result in something like this:

You can also locate and install the package using the Manage NuGet Projects option, available by right-clicking on the web project in Solution Explorer:

Once StructureMap is installed, you’ll notice several additions to your web project:

Most of these you can safely ignore. The one file you’ll need to be concerned with is the IoC.cs class. When you open it, you’ll see a single Initialize method where you will configure your interfaces and the types that should be used for them for this application.

To verify that things work, the simplest approach is to create an interface and an implementation of that interface, and wire them up in a controller. If you’re using the default ASP.NET MVC 5 project template, the HomeController includes an About action that sets ViewBag.Message to a string, which is in turn displayed on the corresponding View. We can demonstrate that everything works by replacing this string with the result of a method call via an interface. Below is the revised code for the HomeController:

Run the application and visit the About page and you should see:

NOTE: We didn’t tell StructureMap how to resolve the IMessageProvider interface, or let it know anything about the MessageProvider implementation. How did it figure this out?

In the default configuration in the IoC.cs file, there is a line of code that reads:

scan.WithDefaultConventions();

This code will automatically attempt to resolve any interface named IWhatever with an instance type named Whatever. That is, the same name, but without the “I” prefix. Of course you can still explicitly specify types that do not follow this convention, but you can save a lot of time if you want to write decoupled code but do not want to constantly have to update your container mapping information.

If you want to learn more about building loosely coupled applications using dependency injection, please check out my video training classes on N-Tier applications and Domain-Driven Design.

Steve Smith

About Ardalis

Software Architect

Steve is an experienced software architect and trainer, focusing on code quality and Domain-Driven Design with .NET.