-
Notifications
You must be signed in to change notification settings - Fork 3.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
NOLOCK #11897
Comments
FromSql would not help you for now? Possibly covered by: #6089 |
Duplicate of #6717 |
If I can't use the linq query for a basic "select" query, there is no point in using complex orm like Entity Framework. A micro orm like dapper or petapoco, would be a better and lightweight choice. |
Hi, context.Books |
* This PR would be a Start for future implementations and improvements in SQL Hints. * Resolve dotnet#11897 * Thought of: dotnet#6717
Hi,
Is it possible to add an extension method for linq queries that table-base sql "with nolock" mssql statement?
Sample: "SELECT * FROM CUSTOMERS WITH(NOLOCK)"
I don't want change db transaction isolation level this case. Because I don't begin a database transaction for select queries and I want generate a sql query with "with nolock" mssql statement.
Regards,
Türenç.
The text was updated successfully, but these errors were encountered: