To configure a property as a concurrency token in Entity Framework, the ________ Fluent API method is used.

  • IsConcurrencyToken()
  • ConcurrencyToken()
  • IsRowVersion()
  • HasConcurrencyToken()
The correct option is Option 3: IsRowVersion(). This method configures a property to be used as a concurrency token in Entity Framework. It marks the property as a row version, indicating that it should be included in concurrency checks when updating records in the database. This ensures that conflicting updates are detected and resolved appropriately, maintaining data integrity.
Add your answer
Loading...

Leave a comment

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