ASP.NET MVCアプリケーションで複数の接続文字列を使用する必要があります。私はそれをどうやってすることができますか?今私は、次のような接続を登録している:それを行うにはASP.NET MVC。オートファックと複数の接続文字列
builder.RegisterType<SqlConnection>().WithParameter(
"connectionString",
WebConfigurationManager.ConnectionStrings["MyConnectionString"].ConnectionString)
.InstancePerLifetimeScope()
.ExternallyOwned();
builder.Register(c => new ContextDataContext(c.Resolve<SqlConnection>())).InstancePerDependency();
ありがとうございます。あなたは私にエントリーポイントを与えて、Keyedメソッドを使うことにしました。 – alexmac