4
私はこのコードを使用して...登録するすべてのコントローラ
container.Register(
AllTypes
.FromAssembly(Assembly.Load("MyNamespace.Dashboard"))
.BasedOn<IController>()
.Configure(component => component.LifeStyle.Transient
.Named(ControllerNameFromType(component.Implementation)))
);
...しかし、私はからのすべてのコントローラを登録できるようにしたいと思いますすべてのアセンブリは物事をよりプラガブルにする。私は以下のコードはうまくいくはずだと思ったが、それは思いついた?
Assembly[] assemblies = AppDomain.CurrentDomain.GetAssemblies();
foreach (var assembly in assemblies) {
container.Register(
AllTypes
.FromAssembly(assembly)
.BasedOn<IController>()
.Configure(component => component.LifeStyle.Transient
.Named(ControllerNameFromType(component.Implementation)))
);
}
得るのですか?もしそうなら、完全なスタックトレースを投稿してください –
はい私はこの例外を取得します。http://pastebin.com/m3c41b842 – Marcus
これはLinq2Sqlの例外です.Windsorに関連していないようです... –