2

I'm using a LinqToSql DataContext and I want to lock a record for being opened in write mode. Meaning while one user in Hong Kong has a record open in write mode, another user in France can't open that record in write mode. How?

Will Du
  • 140
  • 2
  • 13

1 Answers1

1

LinqToSql supports optimistic concurrency, not pessimistic concurrency.

Amy B
  • 108,202
  • 21
  • 135
  • 185