栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 面试经验 > 面试问答

带有NOLOCK的实体框架

面试问答 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

带有NOLOCK的实体框架

否,但是您可以启动事务并将隔离级别设置为uncommited。这本质上与NOLOCK相同,但是它不是针对每个表执行此操作,而是针对事务范围内的所有操作执行此操作。

如果这听起来像您想要的,那么您可以按照以下方法进行操作…

//declare the transaction optionsvar transactionOptions = new System.Transactions.TransactionOptions();//set it to read uncommitedtransactionOptions.IsolationLevel = System.Transactions.IsolationLevel.ReadUncommitted;//create the transaction scope, passing our options inusing (var transactionScope = new System.Transactions.TransactionScope(    System.Transactions.TransactionScopeOption.Required,     transactionOptions))//declare our contextusing (var context = new MyEntityConnection()){    //any reads we do here will also read uncomitted data    //...    //...    //don't forget to complete the transaction scope    transactionScope.Complete();}


转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/433070.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号