What is a DbContext in Entity Framework?
a. An object that represents a database connection
b. A base class for all model classes in Entity Framework
c. An object that manages the entity objects and the underlying database connection
d. A class that represents a database table
Answer: c. An object that manages the entity objects and the underlying database connection
Explanation: DbContext is an object that manages the entity objects and the underlying database connection in Entity Framework. It is responsible for tracking changes to the entity objects and persisting these changes to the database.