Tagged Questions
StructureMap is a Dependency Injection / Inversion of Control tool for .NET licensed under Apache 2. It can be found at http://structuremap.net
24
votes
2answers
6k views
Comparing Castle Windsor, Unity and StructureMap
In a follow up to Krzysztof’s statement that Windsor does a lot more than other IoC’s, I wanted to understand how these IoC’s stack up against each other and the benefits/additional facilities that ...
23
votes
1answer
1k views
How do I use StructureMap with generic unclosed types using Scan with a “greedy” constructor
Between various Stack Overflow questions and blog posts there is a pretty reasonable amount of documentation on the topic of open generics and StructureMap. Unfortunately, I must be missing something ...
20
votes
2answers
4k views
Custom Controller Factory, Dependency Injection / Structuremap problems with ASP.NET MVC
I recently tried to implement dependency injection using StructureMap. I managed to follow the example all the way but I'm encountering a thrown exception every time I try to run the application. ...
12
votes
2answers
2k views
Passing constructor arguments when using StructureMap
I'm using StructureMap for my DI. Imagine I have a class that takes 1 argument like:
public class ProductProvider : IProductProvider
{
public ProductProvider(string connectionString)
{
...
12
votes
3answers
1k views
What is the Best Way to Organize a ASP.Net MVC Solution Using Dependency Injection?
I am early in development on a new ASP.Net MVC project and I using this project to get into DI. I'm pretty sure that I am going to go with Structure Map, but that isn't what I am asking about. What I ...
11
votes
4answers
2k views
StructureMap singleton usage (A class implementing two interface)
public interface IInterface1
{
}
public interface IInterface2
{
}
public class MyClass : IInterface1, IInterface2
{
}
...
ObjectFactory.Initialize(x =>
{
...
10
votes
3answers
185 views
Dependency Injection what´s the big improvement?
Currently I'm trying to understand dependency injection better and I'm using asp.net MVC to work with it. You might see some other related questions from me ;)
Alright, I'll start with an example ...
10
votes
3answers
204 views
Why not lump all service classes into a Factory method (instead of injecting interfaces)?
We are building an ASP.NET project, and encapsulating all of our business logic in service classes. Some is in the domain objects, but generally those are rather anemic (due to the ORM we are using, ...
10
votes
3answers
3k views
ASP.NET MVC 2 Preview 1 - Problem compiling StructureMap Controller Factory
I have a project for which I use StructureMap for dependency injection. The project compiles fine as a MVC project but after moving everything to a MVC2 project I am now receiving the following ...
9
votes
3answers
3k views
ASP.NET MVC: HTTPContext and Dependency Injection
Currently I have an ActionFilter that gets the current users name from HttpContext and passes it into the action which uses it on a service method. eg:
Service.DoSomething(userName);
I now have a ...
9
votes
1answer
2k views
How to define a Structuremap named instance in Code
I want to create a Structuremap named instance in code, without config file
I want to be able to create the instance like this:
var namedInjector = ...
8
votes
3answers
641 views
Problem Implementing StructureMap in VB.Net Conversion of SharpArchitecture
I work in a VB.Net environment and have recently been tasked with creating an MVC environment to use as a base to work from. I decided to convert the latest SharpArchitecture release (Q3 2009) into ...
8
votes
7answers
728 views
Influencing AOP with attributes via IoC; code-smell or elegant?
I'm using StructureMap at the moment, generally with convention-based (Scan()) auto-configuration, and I'm looking to add decorator-based caching into the pipeline.
If I configure it manually that is ...
8
votes
4answers
2k views
StructureMap controller factory and null controller instance in MVC
I'm still trying to figure things out with StructureMap and one of the issues i'm running into is my Controller Factory class blowing up when a null controller type is passed to it. This only happens ...
8
votes
4answers
7k views
StructureMap : How to define default constructor by code?
I can't figure out how to define the default constructor (when it exists overloads) for a type in StructureMap (version 2.5) by code.
I want to get an instance of a service and the container has to ...
7
votes
6answers
287 views
Ways of keeping configuration code out of logic code using Dependency Injection
How can keep all the configuration file code out of my logic code using Settings (ApplicationSettingsBase) and Dependency Injection?
With configuration I mean a customer specific configuration file.
...
7
votes
3answers
881 views
Action Filter Dependency Injection in ASP.NET MVC 3 RC2 with StructureMap
I've been playing with the DI support in ASP.NET MVC RC2.
I have implemented session per request for NHibernate and need to inject ISession into my "Unit of work" action filter.
If I reference the ...
7
votes
1answer
477 views
StructureMap and the decorator pattern
I'm using StructureMap, v. 2.5.3 and am having trouble with chaining together implementations on an interface to implement the Decorator pattern.
I'm used to Windsor, where it is possible to name ...
6
votes
0answers
146 views
StructureMap DBServiceRegistry and MVC-mini-profiler?
If I use this code in each Repository class then I get SQL profiling to work but I want to move that code from each class into the class where StructureMap handles the DB.
Example of a Repository ...
6
votes
7answers
279 views
How can one use an existing instance to select a type to create in an IoC container
this is probably just a newbie question, but I have the following:
public class FooSettings {}
public class BarSettings {}
public class DohSettings {}
// There might be many more settings types...
...
6
votes
2answers
271 views
Cross Process Mocking in ASP.NET
I'm building a REST API using ASP.NET MVC 3. I'm doing it BDD-style using SpecFlow with NUnit as test runner.
Since it's a REST API, testing the Url:s are obviously very important so I want to be ...
6
votes
5answers
312 views
Automatically resolve Interface<T> to Implementation<T> in StructureMap (differ only by generic type T)
I have an interface (IRepository<T>) that is currently being extended for each specific repository, ie: IUserRepository : IRepository<User>.
Each of these interfaces has corresponding ...
6
votes
2answers
157 views
Using Factory to get Injected objects
Is it good practice to have a Factory method to retrieve injected objects or is it OK to just use the factory method from the DI framework?
I'm using structure map, should I just use ...
6
votes
2answers
811 views
StructureMap IRegistrationConvention to register non default naming convention?
I currently have a bunch of repositories like so
IMyRepository
IAnotherRepository
They all inherit from IRepository (if this helps)
How can I get structuremap to use an IRegistryConvention scanner ...
6
votes
2answers
745 views
Xml configuration or Configuration through code?
I personally like the option to configure StructureMap from C# code. From what I understand, one of the advantages of DI, is that we can easily swap in a new concrete instance. But, if the ...
6
votes
2answers
1k views
MVP pattern using webforms and DI object instantiation
I am using the generic repository pattern to persist my data. On the PageLoad, I am creating a new Repository (from IRepository) object, and on PageUnload, I dispose of it.
Should the ...
6
votes
4answers
2k views
IoC, Dll References, and Assembly Scanning
Although this question is related to StructureMap, my general question is:
When wiring up components with an IoC
container in code (as opposed
to configuring via xml) do you
generally need ...
6
votes
2answers
4k views
Entity Framework + POCO
I am building a WPF application using the MVVM pattern. Our stack looks like this:
SQL Server 2008 -> Entity Framework
We use StructureMap for dependency injection to inject our DataFactory which ...
6
votes
4answers
688 views
What conventions/idioms/patterns are you using configuring IOC Containers using the new Fluent Interfaces
I am in the middle of moving over a large body of code to Castle Trunk which includes the new fluent interface for configuring the container. Since the project has a huge windsorConfig xml file that ...
6
votes
7answers
2k views
How to pass arguments to a constructor in an IOC-framework
How can I pass arguments to a constructor in an IOC-framework?
I want to do something like: (Trying to be IOC-framework agnostic ;) )
object objectToLogFor = xxx;
...
5
votes
3answers
128 views
NHibernate: How to inject dependency on an entity
NHibernate 3.2/Fluent NHibernate 1.3/StructureMap 2.6.3 -
Trying to follow DDD as an architectural strategy, I typically don't have dependencies on domain entities. However, I'm experimenting right ...
5
votes
2answers
338 views
StructureMap is not disposing data context when using HttpContextScoped()
My goal is to have one data context (MainDbContext) per HTTP request in ASP.NET MVC and dispose the data context when the request ends.
I'm using the following StructureMap configuration:
public ...
5
votes
2answers
331 views
StructureMap 'conditional singleton' for Lucene.Net IndexReader
I have a threadsafe object that is expensive to create and needs to be available through my application (a Lucene.Net IndexReader).
The object can become invalid, at which point I need to recreate it ...
5
votes
1answer
399 views
EF DbContext and StructureMap scoping
Ok, I give up...
What I want is to share the EF4's DbContext instance per request. I configured StructureMap like this:
For<MyContext>().Use(new MyContext("LocalhostConnString"));
But when I ...
5
votes
2answers
330 views
StructureMap returns a disposed nHibenrate session object from thread local scope
[OR] How to define a StructureMap life cycle for UoW to be consumed by http requests and quartz jobs
I have this web application which uses SM for IoC. I am using HybridHttpOrThreadLocalScoped scope ...
5
votes
3answers
2k views
How can I implement NHibernate session per request without a dependency on NHibernate?
I've raised this question before but am still struggling to find an example that I can get my head around (please don't just tell me to look at the S#arp Architecture project without at least some ...
5
votes
2answers
777 views
Injecting multi-tenant repositories with StructureMap in ASP.NET MVC
I'm implementing StructureMap in a multi-tenant ASP.NET MVC application to inject instances of my tenant repositories that retrieve data based on an ITenantContext interface. The Tenant in question is ...
5
votes
3answers
1k views
How to scan and auto-configure profiles in AutoMapper?
Is there any way to auto-configue Automapper to scan for all profiles in namespace/assembly? What I would like to do is to add mapping profiles to AutoMapper from given assembly filtered by given ...
5
votes
1answer
734 views
SOA Architecture with WCF + IOC Structuremap
I'm a little new to DI containers like StructureMap and I've been using it for a short time with asp.net mvc applications. Now I'm splitting my architecture that will have a WCF service layer and a ...
5
votes
1answer
351 views
Auto wire event handlers with StructureMap?
Say I have an event defined in an interface.
I then have many classes that implement that interface.
The creation of these classes is managed by StructureMap.
Now say I have one delegate that I ...
5
votes
1answer
2k views
Inject AutoMapper
I have been working on injecting AutoMapper into controllers. I like the implementation of Code Camp Server. It creates a wrapper around AutoMapper's IMappingEngine. The dependency injection is done ...
5
votes
4answers
585 views
StructureMap, IIS 7.5 and FileIOException
Howdy all. I am trying to solve a problem which is apparently not uncommon and I'm not sure how to find how this was resolved for folks. When I run StructureMap on my machine through IIS I get an ...
5
votes
2answers
965 views
Constructor dependency injection with NHibernate 2.1 and StructureMap
I've read somewhere that NHibernate 2.1 supports constructor dependency injection for it's entites.
How do I go about configuring StructureMap and NHibnerate 2.1 to get this up and running ?
5
votes
3answers
3k views
NHibernate and Structure Map
So I really like working with NHibernate but always used Spring.Net with it.
I recently came across StructureMap by Jeremy Miller and really like it better than Spring.Net. On his StructureMap ...
5
votes
4answers
2k views
Presenter injection in Model-View-Presenter pattern with StructureMap
I've implemented my own copy of the model view presenter pattern (in vein of web client software factory) so I can leverage my own DI framework instead of being tied to WCSF's ObjectBuilder which I ...
5
votes
3answers
2k views
StructureMap InstanceScope.Hybrid and IDisposable
I'm working on an asp.net-mvc application. The linq data context is being passed into my service objects by structure map. I've got is set to have a scope of hybrid. This all works just fine.
...
5
votes
2answers
3k views
using (Fluent) NHibernate with StructureMap (or any IoCC)
On my quest to learn NHibernate I have reached the next hurdle; how should I go about integrating it with StructureMap?
Although code examples are very welcome, I'm more interested in the general ...
4
votes
2answers
89 views
Structuremap - How to register certain types in certain layers
I am using the Registry DSL example to configure structuremap. But doing this makes all of my registered types available in all layers of my application where I add a refernce to structure map. I dont ...
4
votes
1answer
142 views
StructureMap, NHibernate and multiple databases
I'm working on an Asp.Net MVC 3 application using Fluent NHibernate. I'm just attempting to add an IoC container using StructureMap.
I have implemented a custom controller factory which uses ...
4
votes
1answer
124 views
StructureMap Specifying Explicit Constructor Arguments
I'm working on legacy code.
I have different methods of the same class that pass different arguments to the constructor of a dependency. I'm trying to get some basic IoC usage introduced. Right now ...