Ria服务如何使用Nolock查询 - 读取未提交的功能
有没有办法在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
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.