Fluent NHibernate 自动映射表到完全限定名称
我正在使用 Fluent NHibernate 自动映射。我需要访问同一服务器上的多个数据库是否可以使用完全限定名称覆盖表名。例如,我的连接字符串配置为 Db1,但我需要访问同一服务器上 Db2 上的表 Company。我测试了下面的代码,它似乎有效,我只是想知道这是否会在以后引起问题。
public void Override(AutoMapping<Customer> mapping)
{
mapping.Table("db2.dbo.Company");
}
I'm using Fluent NHibernate auto mapping. I need to access more than one database on the same server is it ok to override the table name with the fully qualified name. For example my connection string is configured to Db1 but I need to access table Company on Db2 on the same server. I tested the code below and it seems to work I'm just wondering if this will cause problems down the road.
public void Override(AutoMapping<Customer> mapping)
{
mapping.Table("db2.dbo.Company");
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
对于 NHibernate 而言,这只是一个表名。如果有一天您重命名其他数据库或表,或者将表移动到 Db1,您所需要做的就是更改该表映射。
这样做的唯一问题是您的应用程序数据库 (Db2) 不再是独立的。您的应用程序和“拥有”Db1 的应用程序将该表作为集成点。
As far as NHibernate is concerned, this is just a table name. If you someday rename the other database, or the table, or move the table into Db1, all you would need to do is change that table mapping.
The only issue I would have with doing this is that your application database (Db2) is no longer self contained. Your app and the app that "owns" Db1 have that table as an integration point.