Your college project involves creating a simple blog. Which ASP.NET Core template provides functionalities like user comments and posts out of the box?

  • Web API
  • Empty
  • MVC
  • Blazor
The ASP.NET Core MVC template is ideal for creating a simple blog. It provides built-in features for handling user comments and posts. MVC (Model-View-Controller) is a pattern that separates the application into components for managing data, the user interface, and the control flow, making it suitable for this scenario.
Add your answer
Loading...

Leave a comment

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