Castle Nh 设施 - 2 个数据库/2 个模型/2 个工厂

发布于 2024-08-07 18:47:44 字数 1005 浏览 5 评论 0原文

我在城堡清单上问过这个问题,因为我正在使用 nh 设施,但我突然意识到也在这里问这个问题:)

抱歉交叉发帖。

我正在使用 nh 工具来配置以下设置:

我有 1 个数据库,用于存储通用报告配置。 另一个存储实际的报告数据。

我还有 1 个用于与报告配置交互的项目 数据库(实体和映射等) 另一个用于与报告数据数据库交互(实体 和映射等)。

我使用以下方法创建了 2 个工厂:

<facilities>
  <facility id="nhibernate">
    <factory id="nhibernate.factory.session1">
      ...
      <assemblies>
        <assembly>ReportData.Model</assembly>
      </assemblies>
    </factory>

    <factory id="nhibernate.factory.session2" alias="reporting">
      ...
      <assemblies>
        <assembly>Reporting.Model</assembly>
      </assemblies>
    </factory>
  </facility>
</facilities>

问题是,即使 nhibernate.factory.session1 和 nhibernate.factory.session2 正在查看不同的数据库并且 配置了不同的程序集,它似乎总是创建 两个数据库中两个模型的表?

我如何告诉 nhibernate.factory.session1 查看 db1 和 model1 和 nhibernate.factory.session2 来查看 db2 和 model2?

干杯

w://

I have asked this on the castle list as i'm using the nh facility but it just dawned on me to ask it here too :)

sorry for the cross posting.

I'm using the nh facility to configure the following setup:

i have 1 database which stores generic report configuration.
and another which stores the actual report data.

i also have 1 project for interacting with the report configuration
database (entities and mappings etc)
and another for interacting with the report data database (entities
and mappings etc).

i've used the following to create 2 factories:

<facilities>
  <facility id="nhibernate">
    <factory id="nhibernate.factory.session1">
      ...
      <assemblies>
        <assembly>ReportData.Model</assembly>
      </assemblies>
    </factory>

    <factory id="nhibernate.factory.session2" alias="reporting">
      ...
      <assemblies>
        <assembly>Reporting.Model</assembly>
      </assemblies>
    </factory>
  </facility>
</facilities>

the problem is is that even though nhibernate.factory.session1 and
nhibernate.factory.session2 are looking at different databases and
have different assemblies configured it always seems to create the
tables for both models in both DBs?

how do i tell nhibernate.factory.session1 to look at db1 and model1
and nhibernate.factory.session2 to look at db2 and model2?

cheers

w://

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

初熏 2024-08-14 18:47:44

这里的解决方案是在处理复杂场景时不要使用 Fluent。

the solution here is to not use fluent when doing tackling complex scenarios.

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