将 NHibernate 连接到具有相同架构的不同数据库
我们正在将数据库分成几个较小的数据库。模式将完全相同,我们将在客户端登录时控制系统连接到哪个数据库。如果我没有在 nhibernate 配置中设置连接字符串,我会收到错误。我不想为每个数据库创建一个工厂。是否可以让会话工厂提供一个会话,我可以在使用它之前设置连接字符串?
We are in the process of splitting our db into several smaller ones. The schemas will be exactly the same and we will control which db the system connects to when the client logs in. I receive an error if I do not set a connection string in my nhibernate configuration. I do not want to create a factory for each db. Is it possible to have a session factory provide a Session that I can set the connection string before using it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
没有使用过它,但 Session.Connection 上有一个 ChangedDatabase 方法。也许这会起作用?
Have not used it but there is a method ChangedDatabase on the Session.Connection. Maybe that would work?
也许你可以使用 NHcontrib 存储库中的 NHibernate.Shards
Maybe you can use NHibernate.Shards, in the NHcontrib repository