Explain the concept of optimistic concurrency in LINQ to SQL.

  • It's a technique where a pessimistic approach is taken, and data is locked when being accessed for modification to avoid conflicts.
  • It's a technique where data is constantly checked for consistency during read operations, ensuring no conflicts occur during write operations.
  • It's a technique where data is duplicated across multiple servers to ensure redundancy and fault tolerance.
  • It's a technique where multiple users can simultaneously access and modify data without locking it, but conflicts are resolved when saving changes to the database.
Optimistic concurrency in LINQ to SQL is a technique where multiple users can simultaneously access and modify data without locking it. Conflicts are resolved when saving changes to the database.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *