0
votes
1answer
11 views
StructureMap help needed
How can I rewrite following so that I can do ObjectFactory.GetNamedInstance("MyNHConfiguration") at later time. "Configuration" is in the variable "cfg" under ExposeConfiguration …
0
votes
0answers
12 views
Does MS PnP Unity Scan for Assemblies Like StructureMap?
In Using StructureMap 2.5 to scan all assemblies in a folder, we can see that StructureMap uses AssembliesFromPath() to explicitly look for types to resolve. What is the equivalent …
0
votes
0answers
14 views
Using MissingNamedInstanceIs in StructureMap
Hi :)
I have this odd problem with StructureMap with regards to using the MissingNamedInstanceIs feature. When doing _containerInstance.GetInstance<T>("key") vs. ObjectFacto …
1
vote
2answers
47 views
Where should I store a reference to my DI container?
I'm wondering how I should store/reference my dependency injection container(s). Is it alright to have a container be a static property on a static class? Or should I have the cont …
0
votes
1answer
15 views
Exception Handling with Structuremap
Is there anyway to recover gracefully in an ASP.NET MVC application if the database is not found for some reason when I try to get an instance of my NHibernate Session from Structu …
0
votes
3answers
43 views
IOC with multiple databases that use same interface (StructureMap or any other DI Framework)
We've been experimenting with StructureMap, and I'm having trouble grasping how to handle situations where a single interface has multiple implementations. The code below shows an …
0
votes
1answer
31 views
What’s the best way to inject different implementations of the same interface in to a controller using StructureMap?
I am fairly new to StructureMap, but my understanding is that there are two ways of getting an instance from the ObjectFactory:
By type (i.e. ObjectFactory.GetInstance<IFoo> …
0
votes
0answers
12 views
StructureMap web.config
I have this interface
public interface ICartService : IService<Cart>
{
...
}
Implementation of the interface
public class CartService : ICartService
{ …
1
vote
1answer
27 views
StructureMap (or any IoC) and WCF
Where would one bootstrap StrucureMap in a WCF service? Completely lost here at the moment....
1
vote
3answers
64 views
Appropriate Situation for Using IoC Container?
Let's say I have a common WCF service and console app project that do not change across client specific deployments. I have some interfaces in the common projects that are implemen …
1
vote
1answer
46 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 …
0
votes
1answer
25 views
StrucutureMap RhinoMock Record/Playback, Example needed
I'm looking for some examples on how to do the following Mock Tests using StructureMap or Unity with NUnit.
I have the following code structure
public interface IDAL
{
List&l …
1
vote
2answers
45 views
Array Constructor Dependency With StructureMap
I've some ITask concretes types defines in my TaskRegistry :
public class TaskResigstry : Registry
{
public TaskResigstry()
{
ForRequestedType<IBootstrapperTask …
1
vote
1answer
21 views
What version of StructureMap can I use in webform app (Net 2.0)
Hi Guys,
I am bit confuse. I would like to use StructureMap in my webform app, but it is still Net 2.0. I am not really sure which version I should use.
Anyone using Structure …
0
votes
2answers
51 views
StructureMap “WithCtorArg” “EqualTo” and nullable types
StructureMap doesn't like passing in Nullable types as constructor arguments. Is there a reason for this? Is there a way to get this to work?
[TestMethod]
public void Demo()
{
…
