Which template would be most suitable for creating a web API project in ASP.NET Core?
- Blazor
- MVC (Model-View-Controller)
- Razor Pages
- Web Application
The MVC (Model-View-Controller) template is most suitable for creating a web API project in ASP.NET Core. It's specifically designed for building web applications and APIs, providing the necessary structure and components for handling HTTP requests and responses in a RESTful manner.
Loading...
Related Quiz
- One core feature of ASP.NET Core Identity is the ability to provide _________-factor authentication.
- What is the primary purpose of Razor views in ASP.NET Core?
- To serve static files, one must configure the necessary _________ in the Startup.cs file.
- What is the primary goal of unit testing in software development?
- The _______ attribute in ASP.NET Core MVC allows you to specify the route pattern directly on the controller or action method.