I need to do something like this
select * from myTable with (xlock,holdlock)
using Entity Framework. Is this possible? I've opened a TransactionScope
with the Serializable
isolation level but my selects are not locking the tables. I'd like them to lock until I complete the transaction scope.