We're struggling with understanding the difference between these two ways to configure StructureMap. Our understanding is that they should be identical but we get different results between these two lines inside of Initialize:
ObjectFactory.Initialize(x =>
{
x.For<IBusinessRelationsContext>().Use<BusinessRelationsContext>().Ctor<string>().Is(ConfigurationManager.ConnectionStrings["BusinessRelationsContext"].ConnectionString);
x.For<IBusinessRelationsContext>().Use(_ => new BusinessRelationsContext(ConfigurationManager.ConnectionStrings["BusinessRelationsContext"].ConnectionString));
});
(we only use 1 of the two at a time - not both, obviously)
Our various constructor signatures on this object (it's EF4 stuff if you care):
public BusinessRelationsContext();
public BusinessRelationsContext(string connectionString);
public BusinessRelationsContext(EntityConnection connection);
The code we use to invoke this is:
ObjectFactory.TryGetInstance<IBusinessRelationsContext>();
The difference in behavior that we see is that the line that includes Ctor<string> fails because StructureMap fails with a 202 "No Default Instance defined for PluginFamily System.Data.Common.DbConnection" (we have no idea why it thinks it needs this). However, if I comment that line out and use the other one, it works perfectly as we would expect. Given that the other one works, I suspect that my understanding that it shouldn't need config for DbConnection is correct.
So rather than tracking down WHY it needs the DbConnection I would rather track down the answer to my question: What's the difference between these two?
.Ctorway of doing this in the past (and it has always worked) but given that it started failing (we're not sure why), we need to understand this better. We're missing something conceptually here and I don't want to have a ticking timebomb... – Jaxidian Dec 9 '11 at 17:39Ctorway of doing it essentially mine says, "For IBusinessRelationsContext instances, use the BusinessRelationsContext object and call the Constructor with a single string parameter and pass in whatConfigurationManager.ConnectionStrings["BusinessRelationsContext"].ConnectionStringevaluates to as that string parameter"? Is there anything else to it? – Jaxidian Dec 9 '11 at 17:45Ctorway with other Context objects ALL over the place! Because our DB is so large, we have ~20 different contexts as we chop it into sections and it works for all 20 of them. It just so happens that in these particular unit tests that this one particular context is failing yet other contexts work fine with theCtormethod. (All contexts are code-gen'd from the same template, so there's NO difference there!) – Jaxidian Dec 9 '11 at 17:47