温莎城堡问题
我的城堡核心有问题,我试图将两个不同的数据库连接注入到特定的存储库。
public class Repository1 {
public Repository1(System.Data.Common.DbConnection conn) { }
}
public class Repository2 {
public Repository2(System.Data.Common.DbConnection conn) { }
}
现在,例如,我想将 Mysql 连接注入到 Repository1,将 Oracle 连接注入到repository2。
I have a problem with castle core, i'm trying to inject two different database connection to specific repositories.
public class Repository1 {
public Repository1(System.Data.Common.DbConnection conn) { }
}
public class Repository2 {
public Repository2(System.Data.Common.DbConnection conn) { }
}
Now for example im would like to inject Mysql connection to Repository1 and Oracle connection to repository2.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
像这样的事情:
您可能需要调整 DbConnection 注册,因为我不知道确切的类名是什么,或者它们是否需要其他配置设置。
Something like this:
You may need to tweak the DbConnection registrations, since I don't know what the exact class names might be, or whether they require other configuration settings.