Skip to content

Latest commit

 

History

21 Commits

Folders and files

NameName
Last commit message
Last commit date
 
 
 
 
 
 
 
 

Repository files navigation

#An MVC3 IDependencyResolver wrapper for Structuremap 2.x

[What it adds to your solution]

2 directories to the root of your MVC project:

  • App_Start (If not already in your solution)
  • DependencyResolution

3 Files:

  • App_Start/StructuremapMvc.cs (this is setting Structuremap IDependencyResolver as the default)
  • DependencyResolution/SmDependencyResolver.cs (Implements the IDependencyResolver using Structuremap)
  • DependencyResolution/IoC.cs (Structuremap's ObjectFactory Initialization, this is where you would define your mappings)

[Default configuration]

public static IContainer Initialize() {
        ObjectFactory.Initialize(x =>
                    {
                        x.Scan(scan =>
                                {
                                    scan.TheCallingAssembly();
                                    scan.WithDefaultConventions();
                                });
        //                x.For<IExample>().Use<Example>();
                    });
        return ObjectFactory.Container;
    }

This configuration will just work for any Interfaces and concrete implementations that follow the default convention and are part of the MVC project. I.E. ISomeService.cs implemented with SomeService.cs

About

No description, website, or topics provided.

Resources

Stars

9 stars

Watchers

4 watching

Forks

Releases

Packages

Used by

Contributors