Fluent NHibernate 自动映射表到完全限定名称

发布于 2024-08-22 11:03:48 字数 285 浏览 6 评论 0原文

我正在使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

别低头,皇冠会掉 2024-08-29 11:03:48

对于 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文