In scenarios where performance is critical, Entity Framework Core can leverage the _________ pattern to batch multiple operations together.

  • Repository
  • Unit of Work
  • Factory
  • Singleton
The Unit of Work pattern is used in Entity Framework Core to batch multiple database operations together. It helps improve performance and ensures that changes are only persisted to the database when the entire unit of work is completed successfully.
Add your answer
Loading...

Leave a comment

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