ASP.NET Core provides a built-in system for _________, which was previously something developers had to integrate through third-party libraries in traditional ASP.NET.
- Dependency Injection
- Authentication
- Routing
- Caching
ASP.NET Core introduces a built-in Dependency Injection (DI) system, which was not part of traditional ASP.NET. In the past, developers often relied on third-party libraries for DI, but ASP.NET Core brings this critical feature into the framework, making it easier to manage dependencies in your applications.
Loading...
Related Quiz
- Which method is commonly used in the Startup.cs file to enable the serving of static files in an ASP.NET Core application?
- The asp-action attribute in a Razor form specifies the _________ to which the form will be submitted.
- In an ASP.NET Core project, the ________ folder is used to store view templates for MVC applications.
- In the MVC design pattern, which component is primarily responsible for handling user input and interactions?
- Razor views in ASP.NET Core are compiled into _________, which improves application performance.