如何在 Fluent NHibernate 中设置默认事务隔离级别?

发布于 2024-08-30 03:36:19 字数 223 浏览 5 评论 0原文

我想在我的 Fluent NHibernate 配置中将默认事务级别设置为 ReadCommited。如果我使用 XML 映射文件,我可以向我的配置文件添加一个键:

<add key="hibernate.connection.isolation" value="ReadCommitted" />

但我不知道如何使用 Fluent 配置来完成此操作。

I would like to set the default transaction level to ReadCommitted in my Fluent NHibernate configuration. If I were using XML mapping files, I could add a key to my config file:

<add key="hibernate.connection.isolation" value="ReadCommitted" />

but I can't figure out how to accomplish this with Fluent configuration.

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

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

发布评论

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

评论(3

看春风乍起 2024-09-06 03:36:19

Fluent NHibernate 不会对事务隔离执行任何操作,因此默认值将是 NHibernate 默认的值。我根本不知道那是什么。

我们没有明确的方法来设置隔离,但由于它只是一个配置值,因此您可以使用 Raw 方法来设置属性。

MsSqlConfiguration.MsSql2008.Raw("connection.isolation", "isolation_level");

资料来源: https://web.archive.org/web/20100812054505/http://support. Fluentnhibernate.org/discussions/help/45-default-isolation-level-for-transactions

Fluent NHibernate doesn't do anything with the transaction isolation, so the default will be whatever NHibernate defaults to. I don't know off the top of my head what that is.

We don't have an explicit method to set the isolation, but as it's just a configuration value you can use the Raw method to set the property.

MsSqlConfiguration.MsSql2008.Raw("connection.isolation", "isolation_level");

Source: https://web.archive.org/web/20100812054505/http://support.fluentnhibernate.org/discussions/help/45-default-isolation-level-for-transactions

情话已封尘 2024-09-06 03:36:19

在对 Session 对象调用 BeginTransaction 时,您应该指定隔离级别。

...
ISession session = SessionFactory.OpenSession();
session.BeginTransaction(IsolationLevel.ReadCommitted);
...

请参考:NHibernate事务 了解更多详情。

You should specify isolation level, when calling: BeginTransaction on your Session object.

...
ISession session = SessionFactory.OpenSession();
session.BeginTransaction(IsolationLevel.ReadCommitted);
...

Please refer to: NHibernate transactions for more details.

流殇 2024-09-06 03:36:19

使用 Fluent NHibernate v 2.x IsolationLevel() 方法可用于全局设置事务的隔离级别:

MsSqlConfiguration.MsSql2008
    .IsolationLevel(System.Data.IsolationLevel.ReadCommitted)

With Fluent NHibernate v 2.x IsolationLevel() method can be used to globally set isolation level for transactions:

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