What is the Linq equivalent for row locking hints in SQL? For example:
select *
from MyTable with (updlock)
where MyField like 'A%'
Or is the whole question moot, because Linq caches all the objects anyway and it can't handle concurrent updates to an object already residing in memory?