在使用Windsor容器IOC的应用程序中使用两个连接字符串

时间:2015-01-28 16:51:00

标签: asp.net-mvc castle-windsor

我是Castle.Windsor容器的新手。我需要访问两个数据库,因此需要两个连接字符串。我已经在web.config文件中添加了详细信息,但是我收到错误,告知最新的连接字符串未在容器中注册。如何注册两个连接字符串?

编辑:来自评论。

<?xml version="1.0" encoding="UTF-8"?>
<connectionStrings>
   <add name="XXDB" connectionString="Data Source=XX;Integrated Security=True;Initial Catalog=XX;" providerName="System.Data.SqlClient" />
   <add name="XXLogDB" connectionString="Data Source=XX;Integrated Security=True;Initial Catalog=XXLog;" providerName="System.Data.SqlClient" />
</connectionStrings>

这是web.config中的连接字符串。有一个conenctionstringInstaller,它实现了第一个连接字符串注册的IWindsorInstaller ...当我添加第二个连接字符串时,我该如何注册它?

0 个答案:

没有答案