Ria服务如何使用Nolock查询 - 读取未提交的功能

发布于 2024-12-07 19:45:59 字数 169 浏览 1 评论 0原文

有没有办法在 RIA 服务(silverlight 4)的特定查询中实现 nolock - 读取未提交的功能?

在Linq To Sql中,我可以通过将事务的隔离级别设置为IsolationLevel.ReadUncommited来达到相同的结果。

有什么办法可以在 RIA 中做到这一点吗?

Is there a way to implement a nolock - read uncommited functionality in specific queries in RIA Services (silverlight 4)?

In Linq To Sql i can achieve the same result by setting the isolation level of the transaction to IsolationLevel.ReadUncommitted.

Any way to do that in RIA?

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

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

发布评论

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

评论(1

冧九 2024-12-14 19:45:59

RIA 服务不会查询其上的数据库,您必须为其提供上下文。如果您使用 LinqToSql 上下文,那么您应该能够使用相同的方法来读取未提交的数据。只需让您的服务上下文继承自 LinqToSqlDomainService 即可。

RIA Services doesn't query the database on its on, you have to provide it a context. If you use a LinqToSql context then you should be able to use the same methods to read uncommitted data. Just have your service context inherit from LinqToSqlDomainService.

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