In an ASP.NET Core MVC application for a library, where would the information about available books and their details be stored?

  • In a Database
  • In a Controller
  • In a View
  • In a CSS File
In an ASP.NET Core MVC application, information about available books and their details is typically stored in a database. The Model (M) in MVC is responsible for managing data, and databases are commonly used for persistent data storage in such applications. Controllers handle user requests and orchestrate interactions with the Model to retrieve and display this data.
Add your answer
Loading...

Leave a comment

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