我正在尝试注册工厂方法来创建开放泛型类型MongoCollection<>
的实例。但是,当我GetInstance
时,它似乎正在使用MongoCollection的构造函数而不是工厂方法。
var mongo = new MongoConfiguration("mongodb://localhost", "test");
For(typeof (MongoCollection<>)).Use(c =>
{
var requestedType = c.BuildStack.Current.RequestedType; // set breakpoint here
var type = requestedType.GetGenericArguments()[0];
return mongo.GetCollection(type);
});
然后我做
ObjectFactory.GetInstance<MongoCollection<User>>();
当我运行GetInstance
行时,它永远不会在工厂方法中遇到断点,但它会抛出StructureMapException
说“没有为PluginFamily MongoDb.Driver.MongoServerSettings定义的默认实例”。有MongoCollection
的构造函数需要MongoServerSettings
,但我不希望结构图使用该构造函数,我希望它使用我的工厂方法。
为什么它没有使用工厂方法的任何想法?这是一个错误吗?