I am using Entity framework 3.5
I need to edit a database row, and I want to ensure that no other process edits this row once I start editing it.
How do I achieve this in Entity Framework 3.5?
I am looking to lock a specific row, not an entire table.