如何在LINQ to SQL中使用WITH(NOLOCK)?

时间:2010-02-08 10:09:40

标签: .net sql linq-to-sql transactions read-uncommitted

我们可以像这样使用SQL:

SELECT * FROM student WITH(NOLOCK);

如何在不使用TransactionScope的情况下使用LINQ to SQL实现此目的?

1 个答案:

答案 0 :(得分:9)

LINQ to SQL没有任何执行此操作的机制,但您可以创建具有特定隔离级别的事务。请看下面的代码:

using (var con = new SqlConnection("constr"))
{
    con.Open();

    using (var transaction = con.BeginTransaction(
        IsolationLevel.ReadUncommitted))
    {
        using (var context = new SchoolDataContext(con))
        {
            // HACK: Setting the context.Transaction is 
            // needed in .NET 3.5 (fixed in .NET 4.0).
            context.Transaction = transaction;
            var q = from s in context.Students select c;
        }
    }
}

有时使用这种类型的隔离是有用的,即出于性能原因。但请确保您不使用此类型的数据库隔离执行任何创建,更新或删除(CUD)操作。它当然取决于您的情况,但您的数据可能会处于不一致的状态。