You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi @borisdj ,
Is there any plan to add the WITH(NOLOCK) clause in the SELECT statement within the BulkRead() method?
For example, SELECT * FROM Employees WITH(NOLOCK)
Thanks
The text was updated successfully, but these errors were encountered:
@mukarramjavid Maybe with (readpast) would be preferable, otherwise you could read uncommited dirty data.
@borisdj Yes, it is preferable. However, if you make it optional, the user can choose whether to add NO(LOCK) / READPAST or not, similar to WITH(HOLDLOCK). What do you think?
Hi @borisdj ,
Is there any plan to add the WITH(NOLOCK) clause in the SELECT statement within the BulkRead() method?
For example,
SELECT * FROM Employees WITH(NOLOCK)
Thanks
The text was updated successfully, but these errors were encountered: