The ________ method in the DbContext can be overridden to provide custom validation logic before saving changes to the database.

  • ValidateChanges
  • OnModelCreating
  • OnSaveChanges
  • ValidateEntity
The correct option is option 4: ValidateEntity. This method can be overridden in the DbContext class to provide custom validation logic before saving changes to the database. It allows developers to perform validation on individual entities before they are saved. OnModelCreating is used to configure the model and its relationships, whereas OnSaveChanges is not a method available for customization in DbContext.
Add your answer
Loading...

Leave a comment

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