Orchard NHibernate 会话工厂初始化

发布于 2024-11-30 02:43:32 字数 83 浏览 2 评论 0原文

我目前正在查看 Orchard 源代码,但找不到 NHibernate 会话工厂在 AutoFac 中注册的位置。有人可以帮忙吗?

谢谢

I'm currently looking at the Orchard source code and can't find where the NHibernate Session Factory been registered into the AutoFac. Anybody can help with that?

Thank you

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

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

发布评论

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

评论(2

紅太極 2024-12-07 02:43:32

Orchard.Framework\Data\SessionFactoryHolder.cs 可能是一个很好的起点。我相信这就是构建 NHib 配置并初始化会话的地方。

Orchard.Framework\Data\SessionFactoryHolder.cs is probably a good place to start. I believe that's where the NHib configuration is built and the session is initialized.

樱花细雨 2024-12-07 02:43:32

正确答案是ShellContainerFactory

ShellContainerFactory中,它将扫描所有从IDependency继承的类并注册它们。 SessionFactoryHolder 继承自 IDependency,因此它将自动注册。

The correct answer is ShellContainerFactory.

In ShellContainerFactory, it will scan all from IDependency inherited classes and register them. The SessionFactoryHolder is inherited from IDependency so it will be registered automatically.

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