我是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 ...当我添加第二个连接字符串时,我该如何注册它?