EFCore.NoLock is a professional extension that allows you to apply the WITH (NOLOCK) table hint to specific LINQ queries using a fluent .WithNoLock() API. Supports both Entity Framework Core and LinqToDB.
Unlike simple regex-based solutions, this library uses the official Microsoft.SqlServer.TransactSql.ScriptDom parser to safely modify the SQL syntax tree. This ensures that hints are applied correctly even in complex queries involving Joins, Subqueries, or CTEs, without breaking the SQL structure.
- π‘οΈ Safe Parsing: Uses Microsoft's
ScriptDomto parse and reconstruct SQL, ensuring 100% valid syntax. - β‘ High Performance: Implements smart caching (
ConcurrentDictionary) to avoid re-parsing identical queries. The overhead is negligible after the first execution. - π¦ Easy to Use: Simple
.WithNoLock()extension method forIQueryable. - π Async Support: Fully supports
ToListAsync,FirstOrDefaultAsync, and other async operations. - π Multi-ORM: Works with both Entity Framework Core and LinqToDB.
- β Compatibility: .NET 6, .NET 7, .NET 8, .NET 9 and .NET 10.
| Package | Description | NuGet |
|---|---|---|
EFCore.NoLock |
EF Core interceptor | |
EFCore.NoLock.LinqToDb |
LinqToDB interceptor | |
EFCore.NoLock.Core |
Shared engine (auto-installed) |
For Entity Framework Core:
dotnet add package EFCore.NoLockFor LinqToDB:
dotnet add package EFCore.NoLock.LinqToDbBoth packages automatically include
EFCore.NoLock.Coreas a transitive dependency.
Add the WithNoLockInterceptor to your DbContext configuration in Program.cs or Startup.cs.
using EFCore.NoLock;
services.AddDbContext<MyDbContext>(options =>
options.UseSqlServer(connectionString)
.AddInterceptors(new WithNoLockInterceptor()));using EFCore.NoLock.Core;
public async Task<List<Order>> GetActiveOrdersAsync()
{
var orders = await _context.Orders
.Include(o => o.OrderLines)
.Where(o => o.IsActive)
.WithNoLock()
.ToListAsync();
return orders;
}using EFCore.NoLock.LinqToDb;
using LinqToDB;
using LinqToDB.DataProvider.SqlServer;
var options = new DataOptions()
.UseSqlServer(connectionString)
.UseInterceptor(new LinqToDbWithNoLockInterceptor());
using var db = new DataConnection(options);using EFCore.NoLock.Core;
var products = db.GetTable<Product>()
.Where(p => p.IsActive)
.WithNoLock()
.ToList();When you use .WithNoLock(), the interceptor captures the generated SQL before it hits the database. It parses the SQL into an Abstract Syntax Tree (AST), identifies the physical tables, and injects the WITH (NOLOCK) hint to every table in the query.
Example Scenario:
Fetching an Order and its related OrderLines.
SELECT [o].[Id],
[o].[CustomerName],
[o0].[Id],
[o0].[OrderId],
[o0].[Product]
FROM [Orders] AS [o]
LEFT OUTER JOIN
[OrderLines] AS [o0]
ON [o].[Id] = [o0].[OrderId]
WHERE [o].[Id] = 1
ORDER BY [o].[Id];SELECT [o].[Id],
[o].[CustomerName],
[o0].[Id],
[o0].[OrderId],
[o0].[Product]
FROM [Orders] AS [o] WITH (NOLOCK)
LEFT OUTER JOIN
[OrderLines] AS [o0] WITH (NOLOCK)
ON [o].[Id] = [o0].[OrderId]
WHERE [o].[Id] = 1
ORDER BY [o].[Id];EFCore.NoLock.Core β Shared SQL transformation engine (ScriptDom + Cache)
βββ EFCore.NoLock β EF Core DbCommandInterceptor
βββ EFCore.NoLock.LinqToDb β LinqToDB CommandInterceptor
The core engine is ORM-agnostic. Each ORM package provides a thin interceptor that delegates SQL transformation to EFCore.NoLock.Core.
Parsing SQL is an expensive operation. To ensure high performance in production environments:
- Caching: The library generates a unique key for every SQL query.
- Lookup: If the query has been processed before, the transformed SQL is retrieved from a thread-safe
ConcurrentDictionary(Cache). - Result: The heavy parsing logic (
ScriptDom) runs only once per unique query. Subsequent calls are virtually instantaneous.
Using WITH (NOLOCK) is equivalent to using the READ UNCOMMITTED isolation level for the specific tables in the query.
- Dirty Reads: You may read data that is currently being modified by another transaction but has not yet been committed.
- Use Cases: Ideal for heavy reporting queries, analytics dashboards, or scenarios where slight data inconsistency is acceptable in exchange for performance and avoiding deadlocks.
- Avoid For: Do not use this for financial transactions, stock inventory updates, or critical business logic requiring strict data consistency.
Contributions are welcome! Please feel free to submit a Pull Request or open an issue on GitHub.
This project is licensed under the MIT License.