Castle Nh 设施 - 2 个数据库/2 个模型/2 个工厂
我在城堡清单上问过这个问题,因为我正在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这里的解决方案是在处理复杂场景时不要使用 Fluent。
the solution here is to not use fluent when doing tackling complex scenarios.